From 7ec618155efca3c275b50d72a77708aeecff2e35 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 16 May 2021 21:11:56 +0200 Subject: [PATCH] [ticket/16775] Fix syntax in gulpfile and remove minify from default tasks PHPBB3-16775 --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6630d9504b..9bd47b24ba 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -30,6 +30,7 @@ function css () { .pipe(gulp.dest(paths.styles.css)); } +/** @todo: currently does not properly work, needs to be fixed */ function minify () { return gulp.src(paths.styles.src, { sourcemaps: true }) .pipe( @@ -53,4 +54,4 @@ exports.css = css; exports.minify = minify; exports.watch = watch; -exports.default = gulp.series('css', 'minify', 'watch'); +exports.default = gulp.series(css, watch);