From 0beb6fb874551a9baf66a0397a233e1a1646ff9f Mon Sep 17 00:00:00 2001 From: TheViolence Date: Sun, 23 Jun 2019 19:24:15 +0200 Subject: [PATCH] Add missing watch task declaration --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 754c5d9..3c7ad32 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,5 +31,7 @@ function watcher() { gulp.watch(['scss/*.scss'], gulp.series(buildCss)); } +gulp.task('watch', watcher) + exports.watch = gulp.series(buildCss, watcher); exports.default = gulp.series(buildCss);