Fix paths in Gulpfile

This commit is contained in:
Nikita Karamov 2021-08-14 21:56:01 +02:00
parent 1e0469ebee
commit 2636bedd37
No known key found for this signature in database
GPG key ID: 7FCADEDBB1AEBE44

View file

@ -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);
};