From 96d4658f6835726c28f5c21858f1f3f740f9bf2c Mon Sep 17 00:00:00 2001 From: rockeek Date: Wed, 29 Apr 2026 12:24:10 +0200 Subject: [PATCH] fix: no more corrupted font in generated zip. vinyl-fs v4 introduced a breaking change: src() now defaults to encoding: 'utf8'. We now disable the codec entirely. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 78a816c3..85648bff 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -89,7 +89,7 @@ function zipper(done) { '!node_modules', '!node_modules/**', '!dist', '!dist/**', '!yarn-error.log' - ]), + ], {encoding: false}), zip(filename), dest('dist/') ], handleError(done));