From 2636bedd3742e3c4eb22e524e46cd19d9b7d9e59 Mon Sep 17 00:00:00 2001 From: Nikita Karamov Date: Sat, 14 Aug 2021 21:56:01 +0200 Subject: [PATCH] Fix paths in Gulpfile --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4776daf..61e4abd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -34,8 +34,8 @@ function static() { exports.default = gulp.parallel(html, css, js, static); exports.watch = () => { - gulp.watch("./src/index.pug", html); - gulp.watch("./src/style/*.scss", css); - gulp.watch("./src/script/index.js", js); + gulp.watch("./src/index.html", html); + gulp.watch("./src/scss/*.scss", css); + gulp.watch("./src/main.js", js); gulp.watch("./src/static/*", static); };