diff --git a/gulpfile.js b/gulpfile.js index 52da6fe..bfc2b00 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -19,3 +19,10 @@ gulp.task('scripts', ['clear'], function() { .pipe(uglify()) .pipe(gulp.dest(paths.dest)); }); + + +gulp.task('default', ['scripts']); + +gulp.task('watch', function() { + gulp.watch(paths.scripts, ['scripts']); +});