我正在尝试执行以下操作:
FOLDERS.GRUNT = "js/grunt"
grunt.initConfig({
//copies from .tmp to final locations
copy: {
dist: {
files: [{
expand: true,
dot: true,
dest: FOLDERS.GRUNT,
src: [
FOLDERS.GRUNT + '/.tmp/*.js'
]
}
]
}
},
我希望这些文件最终会出现在js/grunt但由于某种原因最终会出现在js/grunt/js/grunt/.tmp/myfile.js
也尝试使用cwd:FOLDERS.GRUNT但有同样的问题。