Fix gulpfile

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-10-27 11:19:18 +00:00
parent ca43b64220
commit 10495003c1

View File

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