我编写了简单的GULP4代码。
启动时,它可以正常工作。但是在3-4次重新加载后,它会停止并显示在控制台文本中, [Browsersync]正在重新加载浏览器... ,而没有任何更改。
function watchFiles() {
gulp.watch([path.watch.html], gulp.series('html:build')),
gulp.watch([path.watch.js], gulp.series('js:build')),
gulp.watch([path.watch.style], gulp.series('style:build')),
//here other functions, removed to be shorter
};
gulp.task('webserver', function () {
browserSync(config);
});
gulp.task('default', gulp.parallel(
'build', 'webserver', watchFiles
));