gpt4 book ai didi

error-handling - Gulp 4即使出现错误也要继续观察

转载 作者:行者123 更新时间:2023-12-03 08:50:02 27 4
gpt4 key购买 nike

我该怎么做

// ...
gulp.watch(source.app, gulp.series(
lint(source.app),
transpile(source.app),
ATDD,
));

要继续观察,即使是来自短绒或装卸机的错误发生了吗?

我的任务函数如下所示:
// ...
function lintWorker(source) {
return gulp.src(source)
.pipe(tslint({
configuration: "tslint.json",
options : {
formatter: "prose"
}
}))
.pipe(tslint.report(stylish, {
emitError: false,
sort: true,
bell: true
}));
};
export function lint(source) {
let fn = () => {
return lintWorker(source);
};
fn.displayName = ["linting", ...source].join(" ");
return fn;
};

最佳答案

我找到了简单的方法。

gulp.watch(source.app, (done) => {
gulp.series(
lint(source.app),
transpile(source.app),
ATDD,
)((err) => {
if (err) {
console.error("error", err);
}
done();
});
});

关于error-handling - Gulp 4即使出现错误也要继续观察,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43474288/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com