将coffee目录编译到JS同一目录下

问题描述 投票:0回答:1

我该如何执行这个简单的命令:

coffee --bare --output js/ coffee/
在 grunt-coffee 配置中?

javascript coffeescript gruntjs
1个回答
1
投票

尝试

{
  expand: true,
  cwd: 'coffee_dir',
  src: '**/*.coffee',
  dest: 'js_dir',
  ext: '.js'
}
© www.soinside.com 2019 - 2024. All rights reserved.