Skip to content

Commit

Permalink
get gulp watch working (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
line47 authored Feb 3, 2020
1 parent 2e987b5 commit 22e48ca
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tools/gulp/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
)();
});
};

0 comments on commit 22e48ca

Please sign in to comment.