Gulp:在编译之前缩小把手文件

时间:2014-07-24 11:48:09

标签: minify handlebars.js gulp

我看到至少gulp插件gulp-ember-handlebars没有缩小html。所以我认为在编译之前缩小文件会很好。像这样:

    gulp.src(paths.tmplInput)
    .pipe(minifyHTML({collapseWhitespace:true,removeComments:true}))
    .pipe(handlebars({outputType: 'browser'}))
    .pipe(concatStr('templates.js'))
    .pipe(uglify())
    .pipe(gulp.dest('./src'));

但后来我注意到{{action}}也被删除了。这不完全是我想要的。有解决方案吗感谢。

0 个答案:

没有答案