From 283840caed825dcad2d38e9efdcf43c84b678643 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Sat, 14 Sep 2024 11:41:57 -0400 Subject: [PATCH] Fix copying of binary files during asset build This fixes another instance of the issue identified in https://github.com/hypothesis/client/pull/6527. Fixes https://github.com/hypothesis/h/issues/8952 --- gulpfile.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 912dd5b7a0b..e4b2b2375d2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -45,7 +45,10 @@ const fontFiles = 'h/static/styles/vendor/fonts/h.woff'; gulp.task('build-fonts', () => { const fontsDir = 'build/fonts'; - return gulp.src(fontFiles).pipe(changed(fontsDir)).pipe(gulp.dest(fontsDir)); + return gulp + .src(fontFiles, { encoding: false }) + .pipe(changed(fontsDir)) + .pipe(gulp.dest(fontsDir)); }); gulp.task('watch-fonts', () => { @@ -75,7 +78,7 @@ gulp.task('build-images', () => { const imagesDir = 'build/images'; return gulp - .src(imageFiles) + .src(imageFiles, { encoding: false }) .pipe(changed(imagesDir)) .pipe(gulpIf(shouldMinifySVG, svgmin(svgminConfig))) .pipe(gulp.dest(imagesDir));