Add gulp default talk (watcher)

This commit is contained in:
redpik 2018-10-16 09:00:14 +02:00
parent 94fb26825f
commit 7b38e7422d
1 changed files with 5 additions and 0 deletions

View File

@ -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']);