Skip to content

Commit

Permalink
fix: Gulp watch new and deleted files
Browse files Browse the repository at this point in the history
  • Loading branch information
Plou committed Feb 24, 2017
1 parent 3ef74d1 commit d81137e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -80,7 +80,7 @@ gulp.task('serve', function() {
gulp.watch("css/src/**/*.scss", ['scss'])
gulp.watch("js/src/**/*.js", ['js'])
gulp.watch("templates/**/*.pug", ['pug'])
gulp.watch('img/**/*').on('change', browserSync.reload)
gulp.watch('img/**/*', browserSync.reload)
})

gulp.task('default', [ 'build', 'serve' ])
Expand Down

0 comments on commit d81137e

Please sign in to comment.