我看到至少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}}
也被删除了。这不完全是我想要的。有解决方案吗感谢。