From 8b05749e84b6bc1a78e74a872d2369b0852ac58a Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Thu, 31 May 2018 13:13:57 +0200 Subject: [PATCH] fix watch task --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 28f8cff..57241e8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -68,8 +68,8 @@ gulp.task('sass', function () { }); gulp.task('watch', ['default'], function() { - gulp.watch(['./assets/js/**/*.js'], ['browserify'] ); - gulp.watch(['./assets/sass/**/**/*.scss'], ['sass'] ); - gulp.watch(['./assets/**/*.html'], ['html'] ); - gulp.watch(['./assets/img/**/*'], ['img'] ); + gulp.watch(['./assets/src/js/**/*.js'], ['browserify'] ); + gulp.watch(['./assets/src/sass/**/**/*.scss'], ['sass'] ); + gulp.watch(['./assets/src/**/*.html'], ['html'] ); + gulp.watch(['./assets/src/img/**/*'], ['img'] ); });