我的gruntfile.coffee中有以下内容:
copy: {
main: {
expand: true,
cwd: 'js/no-concat/',
src: '**',
dest: 'deploy/public_html/assets/javascripts/',
flatten: true,
filter: 'isFile',
}
}
当我从命令行运行“grunt copy”进行测试时,它说:
未找到“复制”目标。警告:任务“复制”失败。使用--force继续。
我试过阳光下的每一个变化都无济于事。
请帮忙: - /
答案 0 :(得分:2)
以上不是有效的Coffeescript。试试这个:
module.exports = (grunt)->
grunt.initConfig
copy:
main:
expand: true
cwd: 'js/no-concat/'
src: '**'
dest: 'deploy/public_html/assets/javascripts/'
flatten: true
filter: 'isFile'