diff --git a/gulpfile.js b/gulpfile.js index 41b329f..d516553 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -80,3 +80,7 @@ gulp.task('webserver', function() { }); gulp.task('default', ['webserver']); + +gulp.task('watch', function() { + gulp.watch([paths.srcJS, paths.srcViews], ['uglify']); +});