我想构建“唯一一个文件'我换了,不是一堆文件, 所以我试过这样的事情
gulp.task('watch_html', function () {
return gulp.watch('source/**/*.html', function (event) {
gulp.src(event.path)
.pipe(prettify({indent_size: 4}))
.pipe(gulp.dest('dist'));
});
});
但为什么这不起作用? 有解决方法吗?
答案 0 :(得分:1)
答案 1 :(得分:0)
您应该分开任务:
gulp.task('html', function() {
return gulp.src('source/**/*.html')
.pipe(prettify({indent_size: 4}))
.pipe(gulp.dest('dist'));
});
gulp.task('watch', function() {
// when modification is detected, html task is launched
gulp.watch(['source/**/*.html'], ['html']);
});