diff --git a/Gulpfile.js b/Gulpfile.js index 9728d9e..89ae54e 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -55,3 +55,7 @@ gulp.task('cdn', () => { gulp.task('copy', ['copy:images', 'copy:html', 'copy:fonts']) gulp.task('build', ['styles', 'scripts', 'copy']); + +gulp.task('watch', function() { + gulp.watch(['index.html', 'js/**/*.js', 'css/**/*.css'], ['build']); +});