我最终编写了一个多任务来处理它:
grunt.registerMultiTask('integrateTemplate', 'Integrates compiled templates into html file', function () {
var data = this.data,
path = require('path'),
src = grunt.file.read(data.src),
dest = grunt.template.process(data.dest),
templates = grunt.file.read(data.compiledTemplate),
out;
out = src.replace(/\{\{templates\}\}/g, templates);
grunt.file.write(dest, out);
grunt.log.writeln('Template integrated');
});
prod_template.html
看起来像这样:
<html>
<head>
</head>
<body>
{{templates}}
</body>
</html>
然后我只是调用它:
integrateTemplate: {
main: {
compiledTemplate: '<%= templates.main.dest %>', // Compiled template src
src: 'prod_template.html',
dest: 'index.html'
}
}
不过,如果有更好的建议(我相信有),我很想听听。