将咖啡目录编译到JS的相同目录中

时间:2013-08-20 16:23:14

标签: javascript compiler-construction coffeescript gruntjs

我该怎么做这个简单的命令:coffee --bare --output js/ coffee/ 在grunt-coffee配置?

1 个答案:

答案 0 :(得分:1)

{
  expand: true,
  cwd: 'coffee_dir',
  src: '**/*.coffee',
  dest: 'js_dir',
  ext: '.js'
}