1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 20:10:18 +02:00

[ticket/16775] Fix syntax in gulpfile and remove minify from default tasks

PHPBB3-16775
This commit is contained in:
Marc Alexander
2021-05-16 21:11:56 +02:00
parent 57b0547fd6
commit 7ec618155e

View File

@@ -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);