From 8246071b8c8316a4ae39498c221c4af26ce09a49 Mon Sep 17 00:00:00 2001 From: FreneticScribbler Date: Mon, 1 Jul 2024 19:29:45 +0100 Subject: [PATCH] Stop gulp corrupting all the font files. I bloody love the javascript ecosystem, I do. Really. >.< --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 76b53616..b1a1d9ff 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,7 +16,7 @@ const con = require('gulp-concat'); const gulpif = require('gulp-if'); function fonts(done) { - return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*') + return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*', { encoding: false }) .pipe(gulp.dest('pipeline/built_assets/fonts')) .pipe(browsersync.stream()); }