From d00249e4491f9cf9ba1c63e9385574ac2e06e3cd Mon Sep 17 00:00:00 2001 From: David Molineus Date: Thu, 22 Jan 2015 16:09:27 +0100 Subject: [PATCH] Add default and watch task. --- gulpfile.js | 7 +++++++ 1 file changed, 7 insertions(+) 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']); +});