Merge pull request #830 from redpik/master

Add gulp default task (watcher) - thx @redpik !
This commit is contained in:
Holger 2018-10-18 10:23:15 +02:00 committed by GitHub
commit 1e0798d7e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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']);