diff --git a/gulpfile.js b/gulpfile.js index 596d310..7e03dde 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -77,8 +77,8 @@ const zipper = (done) => { } const hbsWatcher = () => watch(['*.hbs', 'partials/**/*.hbs'], hbs); -const cssWatcher = () => parallel(watch('assets/css/**/*.css', allCss)); -const jsWatcher = () => parallel(watch('assets/js/**/*.js', allJs)); +const cssWatcher = () => watch('assets/css/**/*.css', allCss); +const jsWatcher = () => watch('assets/js/**/*.js', allJs); const watcher = parallel(hbsWatcher, cssWatcher, jsWatcher); const build = series(allCss, allJs);