Skip to content

Commit 85b0ce3

Browse files
committed
add gulp watch task
Adding a gulp watch task for automatic easier development.
1 parent 7bfbe53 commit 85b0ce3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gulpfile.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,8 @@ gulp.task('compress', function() {
1313

1414
// Default Task
1515
gulp.task('default', ['compress']);
16+
17+
// Watch Task
18+
gulp.task( 'watch', function() {
19+
gulp.watch( 'js/*.js', ['compress']);
20+
});

0 commit comments

Comments
 (0)