我想将特定的咖啡脚本文件(未包含在<!-- build:js({.tmp, app}) -->
我的部分中index.html
)复制到例如dist/scripts
目录。
我试过(Gruntfile.js
):
copy: {
dist: {
files: [
// ...
{
expand: true,
cwd: './tmp/scripts/polyfill',
dest: '<%= yeoman.dist %>/scripts/polyfill',
src: [
'*'
]
}]
}
},