From bbae68f0830a9ef8d53e0b7eecd55caebc4d3a09 Mon Sep 17 00:00:00 2001 From: Holger Koenemann Date: Sun, 28 Apr 2019 15:55:40 +0200 Subject: [PATCH] Fixing watch-bs task We need to run both tasks (browser-sync and watch) parallel here instead of in a series. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e699dbe..7b8e5f0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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.