From 10495003c17045b2bd77afc0be38c66b8e3f0637 Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Sun, 27 Oct 2024 11:19:18 +0000 Subject: [PATCH] Fix gulpfile Signed-off-by: Nikolaos Karaolidis --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);