Merge pull request #26 from k2nr/gulp-watch

Add gulp watch task
This commit is contained in:
Buu Nguyen 2014-05-14 11:06:41 -07:00
commit 66c7b64d01
1 changed files with 5 additions and 1 deletions

View File

@ -48,3 +48,7 @@ gulp.task('firefox', function() {
gulp.task('default', function(cb) {
return rseq('clean', ['chrome', 'safari', 'firefox'], cb)
})
gulp.task('watch', function() {
gulp.watch(['./src/**/*'], ['default'])
})