有时候我确实在控制台中看到如下所示的哈巴狗错误: http://prntscr.com/nfah3s
即使仅在最终隐藏的文件中,也无法仅通过行号和基数来跟踪它们……
我对哈巴狗的口香糖配置如下:
pug = require("gulp-pug"),
gutil = require("gulp-util"),
gulp.task('pug', (cb) => {
gulp.src(paths.pug.src)
.pipe(plumber(function (error) {
gutil.log(error.message);
this.emit('end');
}))
.pipe(pug({
pretty: true,
}))
.pipe(gulp.dest(paths.pug.dest))
.pipe(browserSync.reload({ stream: true }));
cb();
})
如何设置gulp以更详细的方式查看错误?非常感谢