标签: javascript compiler-construction coffeescript gruntjs
我该怎么做这个简单的命令:coffee --bare --output js/ coffee/ 在grunt-coffee配置?
coffee --bare --output js/ coffee/
答案 0 :(得分:1)
试
{ expand: true, cwd: 'coffee_dir', src: '**/*.coffee', dest: 'js_dir', ext: '.js' }