Add gulp default talk (watcher)
This commit is contained in:
parent
94fb26825f
commit
7b38e7422d
|
@ -232,3 +232,8 @@ gulp.task( 'dist-product', ['clean-dist-product'], function() {
|
||||||
gulp.task( 'clean-dist-product', function() {
|
gulp.task( 'clean-dist-product', function() {
|
||||||
return del( [paths.distprod + '/**'] );
|
return del( [paths.distprod + '/**'] );
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
// Run:
|
||||||
|
// gulp
|
||||||
|
// Starts watcher (default task)
|
||||||
|
gulp.task('default', ['watch']);
|
||||||
|
|
Reference in New Issue