From 7bc2d5fa8c2ec2ef09f7eae9b1d91df62c62e8b9 Mon Sep 17 00:00:00 2001 From: John O'Nolan Date: Fri, 6 Dec 2019 18:09:20 +0700 Subject: [PATCH] Update hbs watcher --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 356f03ec..a7f961d5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,7 +31,7 @@ const handleError = (done) => { function hbs(done) { pump([ - src(['*.hbs', 'partials/**/*.hbs', '!node_modules/**/*.hbs']), + src(['*.hbs', '**/**/*.hbs', '!node_modules/**/*.hbs']), livereload() ], handleError(done)); } @@ -79,7 +79,7 @@ function zipper(done) { } const cssWatcher = () => watch('assets/css/**', css); -const hbsWatcher = () => watch(['*.hbs', 'partials/**/*.hbs', '!node_modules/**/*.hbs'], hbs); +const hbsWatcher = () => watch(['*.hbs', '**/**/*.hbs', '!node_modules/**/*.hbs'], hbs); const watcher = parallel(cssWatcher, hbsWatcher); const build = series(css, js); const dev = series(build, serve, watcher);