From b997afe9d222ec6851d60c31e02e92f89a1636d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Fri, 1 Feb 2019 11:41:56 +0100 Subject: [PATCH] Add gulp dist-watch --- app/gulpfile.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/gulpfile.js b/app/gulpfile.js index a04e04f..ea61794 100644 --- a/app/gulpfile.js +++ b/app/gulpfile.js @@ -272,6 +272,16 @@ gulp.task('dist', gulp.series( 'resources' )); +gulp.task('dist-watch', gulp.series( + 'clean', + 'lint', + 'bundle:watch', + 'html', + 'css', + 'resources', + 'watch', +)); + gulp.task('live', gulp.series( 'clean', 'lint',