mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-28 12:30:42 +02:00
[ticket/16775] Fix syntax in gulpfile and remove minify from default tasks
PHPBB3-16775
This commit is contained in:
@@ -30,6 +30,7 @@ function css () {
|
|||||||
.pipe(gulp.dest(paths.styles.css));
|
.pipe(gulp.dest(paths.styles.css));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @todo: currently does not properly work, needs to be fixed */
|
||||||
function minify () {
|
function minify () {
|
||||||
return gulp.src(paths.styles.src, { sourcemaps: true })
|
return gulp.src(paths.styles.src, { sourcemaps: true })
|
||||||
.pipe(
|
.pipe(
|
||||||
@@ -53,4 +54,4 @@ exports.css = css;
|
|||||||
exports.minify = minify;
|
exports.minify = minify;
|
||||||
exports.watch = watch;
|
exports.watch = watch;
|
||||||
|
|
||||||
exports.default = gulp.series('css', 'minify', 'watch');
|
exports.default = gulp.series(css, watch);
|
||||||
|
Reference in New Issue
Block a user