我想将特定的coffeescript文件(我的<!-- build:js({.tmp, app}) -->
的{{1}}部分中未包含)复制到例如index.html
目录。
我试过(dist/scripts
):
Gruntfile.js
答案 0 :(得分:1)
如果您只想复制一个文件,则可以使用更简单的grunt语法:
copy: {
dist: {
files: [{
'.tmp/scripts/polyfill/myfile.js': '<%= yeoman.dist %>/scripts/polyfill/myfile.js'
}]
}
}
临时文件夹的名称也是.tmp
,而不仅仅是tmp
。
答案 1 :(得分:-2)
这有效:
{
expand: true,
cwd: '.tmp/scripts/polyfill',
dest: '<%= yeoman.dist %>/scripts/polyfill',
src: [
'polyfill.js'
]
}
我的方法很好,但它包含一个拼写错误:./tmp
- 它应该是.tmp
。