gulp 编译 jade后的 html 是压缩的,想要不压缩的,能控制吗?
附上 gulpfile.js
var gulp = require('gulp'),
jade = require('gulp-jade');
gulp.task('jade', function() {
return gulp.src('**/*.jade')
.pipe(jade())
.pipe(gulp.dest('./'));
});
gulp.task('watch', function() {
gulp.watch('**/*.jade', ['jade']);
});
// gulp.task('watch', function() {
// gulp.watch('./**/*.jade', function(e) {
// var p = e.path.replace(__dirname, '')
// .replace(/\/[^\/]+?\.jade$/, '/');
// gulp.src(e.path)
// .pipe(jade())
// .pipe(gulp.dest('.' + p));
// });
// });
gulp.task('default', ['watch']);
冰蓝D疾风
9 years, 9 months ago