From b4d37a2036e42806c6880252fae3169c08b9334b Mon Sep 17 00:00:00 2001 From: Kay0u Date: Thu, 4 Jun 2020 00:08:42 +0200 Subject: [PATCH] add a default task --- src/gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gulpfile.js b/src/gulpfile.js index 5dd1dbbc..d1846803 100644 --- a/src/gulpfile.js +++ b/src/gulpfile.js @@ -116,4 +116,6 @@ gulp.task('watch', function() { gulp.watch('js/**/*.js', gulp.series('js')); gulp.watch('css/*.less', gulp.series('css')); gulp.watch('views/**/*.ms', gulp.series('views')); -}); \ No newline at end of file +}); + +gulp.task('default', gulp.series('build', 'watch')); \ No newline at end of file