From 295f3eab154b1dd7dd59eabb265355561e66a76f Mon Sep 17 00:00:00 2001 From: Seagyn Davis Date: Wed, 18 Sep 2024 21:45:15 +0200 Subject: [PATCH] fix: don't encode src before zipping --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index cd14de98..297c1659 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -84,7 +84,7 @@ function zipper(done) { '!node_modules', '!node_modules/**', '!dist', '!dist/**', '!yarn-error.log' - ]), + ], {encoding: false}), zip(filename), dest('dist/') ], handleError(done));