Merge pull request #830 from redpik/master
Add gulp default task (watcher) - thx @redpik !
This commit is contained in:
commit
1e0798d7e1
|
@ -232,3 +232,8 @@ gulp.task( 'dist-product', ['clean-dist-product'], function() {
|
|||
gulp.task( 'clean-dist-product', function() {
|
||||
return del( [paths.distprod + '/**'] );
|
||||
} );
|
||||
|
||||
// Run:
|
||||
// gulp
|
||||
// Starts watcher (default task)
|
||||
gulp.task('default', ['watch']);
|
||||
|
|
Reference in New Issue