在处理HTML标记时,我使用了哈巴狗。但是,gulp给了我一个错误:Can't pipe to undefined
。
带有问题的代码部分:
gulp.task('pug', function(){
return gulp.src('dev/pug/pages/*.pug')
.pipe(plumber())
.pipe(pug({
pretty: true
}))
.on('error', notify.onError(function(error){
return "Message to the notifier: " + error.message;
}))
.pipe(gulp.dest('dev'))
.pipe(browserSync.reload());
});