寻找正确的正则表达式将文件夹结构从“app”镜像到“dist”文件夹。
例如 app/components/search/a.html app/components/search/b.html 等。
到:dist/components/search/a.html dist/components/search/b.html 等。
我当前的 grunt htmlmin 条目:
htmlmin: {
dist: {
options: {
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeCommentsFromCDATA: true,
removeOptionalTags: true
},
files: {
'<%= yeoman.dist %>/components/search' : '<%= yeoman.app %>/components/search/**/*.html'
}
}
},
尝试了其他几种组合均未成功。