From 7b38e7422d93f4ac0349a2b3547a829f0096fb66 Mon Sep 17 00:00:00 2001 From: redpik Date: Tue, 16 Oct 2018 09:00:14 +0200 Subject: [PATCH] Add gulp default talk (watcher) --- gulpfile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 8d38bf0..39c4d3d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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']);