Skip to content

Commit 90d9879

Browse files
authored
Merge pull request #455 from jonorthwash/bugfix/make-build-watch-track-notatrix
gulpfile.js: Fix `build-watch` command to track `notatrix/`
2 parents 85e946f + f6bb167 commit 90d9879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ gulp.task("docs", done => {
5555
gulp.task("ico", function() { return gulp.src(["./client/favicon.png"]).pipe(gulp.dest("./server/public")); });
5656

5757
gulp.task("watch", () => {
58-
gulp.watch(["client/*.js", "client/*/*.js", "server/views/*.ejs"], gulp.parallel("js", "html", "docs"));
58+
gulp.watch(["client/**/*.js", "notatrix/**/*.js", "server/views/**/*.ejs"], gulp.parallel("js", "html", "docs"));
5959
});
6060

6161
gulp.task("default", gulp.parallel("js", "html", "docs", "ico"));

0 commit comments

Comments
 (0)