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:
parent
8af84c1e76
commit
bbae68f083
|
@ -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.
|
||||
|
|
Reference in New Issue