Gulp BrowserSync崩溃

时间:2016-04-22 12:50:39

标签: gulp

我使用BrowserSync 2.12.3运行Gulp 3.9.1。 一切正常,但一段时间后BrowserSync停止工作,我需要重新启动它。 这是gulpfile

{{1}}

感谢。

1 个答案:

答案 0 :(得分:1)

您的sass文件中可能有一些错误。 尝试添加此行以跳过错误。

请替换此行:

 .pipe(sass())

这一行:

.pipe(sass().on('error', showError)) 

并添加此处理函数:

function showError(error) {
console.log(error.toString());
this.emit('end');}