我看到至少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}}
也被删除了。这不完全是我想要的。有什么解决办法吗?谢谢。
1条答案
按热度按时间5vf7fwbs1#
根据这个答案,https://stackoverflow.com/a/48361324/209288(如果您使用的是带有gulp Package 器的html-minifier)
您可以设置此选项,如下所示: