Fixing watch-bs task

We need to run both tasks (browser-sync and watch) parallel here instead of in a series.
This commit is contained in:
Holger Koenemann 2019-04-28 15:55:40 +02:00
parent 8af84c1e76
commit bbae68f083
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ gulp.task( 'clean-source', function() {
// Run:
// gulp watch-bs
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
gulp.task( 'watch-bs', gulp.series('browser-sync', 'watch', 'scripts'));
gulp.task( 'watch-bs', gulp.parallel('browser-sync', 'watch'));
// Run:
// gulp copy-assets.