Skip to content

Commit

Permalink
fix: gulpfile from template watches nested SCSS files
Browse files Browse the repository at this point in the history
  • Loading branch information
smotornyuk committed Jul 24, 2024
1 parent 457852f commit 234367f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const build = () =>
* directory.
*/
const watchStyles = () =>
watch(resolve(srcDir, "*.scss"), { ignoreInitial: false }, build);
watch(resolve(srcDir, "**/*.scss"), { ignoreInitial: false }, build);

exports.watch = watchStyles;
exports.build = build;

0 comments on commit 234367f

Please sign in to comment.