From 1914b691d65b1118c7a395cb5809f3c65238791c Mon Sep 17 00:00:00 2001 From: Serraniel Date: Tue, 29 Dec 2020 15:42:06 +0100 Subject: [PATCH] #48 Fixed watch script --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0868042..3d74071 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -208,7 +208,7 @@ Watchers gulp.task('watch', (done) => { gulp.watch(`${src.styles}/**/*.scss`, gulp.series('clean:build', 'styles', 'dist:copy', 'dist:zip')) - gulp.watch(`${src.scripts}/**/*.js`, gulp.series('clean:build', 'scripts', 'dist:copy', 'dist:zip')) + gulp.watch(`${src.scripts}/**/*.ts`, gulp.series('clean:build', 'scripts', 'dist:copy', 'dist:zip')) gulp.watch(`${src.images}/**/*`, gulp.series('clean:build', 'images', 'dist:copy', 'dist:zip'))