diff options
author | Miodec <[email protected]> | 2022-02-09 20:43:42 +0100 |
---|---|---|
committer | Miodec <[email protected]> | 2022-02-09 20:43:42 +0100 |
commit | 25bb04a3917c50627db190ce45b4b174c00a3c39 (patch) | |
tree | 41e323e34e9be9289b24c8d2ae8d7ef42a786545 /frontend/gulpfile.js | |
parent | a991545c12ec8ce12a3f3422e02be58efb432f45 (diff) | |
download | monkeytype-25bb04a3917c50627db190ce45b4b174c00a3c39.tar.gz monkeytype-25bb04a3917c50627db190ce45b4b174c00a3c39.zip |
fixed watch paths
Diffstat (limited to 'frontend/gulpfile.js')
-rw-r--r-- | frontend/gulpfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index e59e09b52..fdeb7b57b 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -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")); |