几次重新加载后,BrowserSync在Gulp 4中停止工作

时间:2019-04-22 10:32:18

标签: browser-sync gulp-4

我编写了简单的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
));

0 个答案:

没有答案