mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-04 18:53:26 +08:00
fixed watch paths
This commit is contained in:
parent
a991545c12
commit
25bb04a391
1 changed files with 3 additions and 3 deletions
|
@ -115,9 +115,9 @@ task(
|
|||
);
|
||||
|
||||
task("watch", function () {
|
||||
watch("./frontend/src/sass/**/*.scss", series("sass"));
|
||||
watch("./frontend/src/js/**/*.js", series("lint-js", "browserify"));
|
||||
watch("./frontend/static/**/*.*", series("lint-json", "static"));
|
||||
watch("./src/sass/**/*.scss", series("sass"));
|
||||
watch("./src/js/**/*.js", series("lint-js", "browserify"));
|
||||
watch("./static/**/*.*", series("lint-json", "static"));
|
||||
});
|
||||
|
||||
task("build", series("clean", "compile"));
|
||||
|
|
Loading…
Reference in a new issue