From 22e48cab2c7359e06cdcf68cb0bcd13fc90af93e Mon Sep 17 00:00:00 2001 From: Scott Weber Date: Mon, 3 Feb 2020 12:41:48 -0500 Subject: [PATCH] get gulp watch working (#616) --- tools/gulp/watch.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tools/gulp/watch.js b/tools/gulp/watch.js index 14cfd36907..7f27f27001 100644 --- a/tools/gulp/watch.js +++ b/tools/gulp/watch.js @@ -39,9 +39,13 @@ module.exports = (gulp, shared) => { gulp.task('watch', seriesDone => { dutil.logMessage('👀 ', 'Transpiling + watching files for future changes'); - return gulp.series('build:dev', 'server', 'watch:packages', 'watch:docs', done => { - seriesDone(); - done(); - })(); + return gulp.series( + 'build:dev', + gulp.parallel('server', 'watch:packages', 'watch:docs'), + done => { + seriesDone(); + done(); + } + )(); }); };