From 4d6e898e74b8c7f5d169f0e50b3103a8c7bd1eec Mon Sep 17 00:00:00 2001 From: jorge-hangar Date: Thu, 15 Jul 2021 17:36:47 +0200 Subject: [PATCH] mods in gulpfile so `npm start` will track all .scss files inside `assets/scss` --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 2d65205..055a2ae 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -28,6 +28,7 @@ function serve() { }); gulp.watch("asset/scss/*.scss", sass); + gulp.watch("asset/scss/*/*.scss", sass); gulp.watch("*.html").on('change', browserSync.reload); }