【问题标题】:Compile directories of coffee into the same directories of JS将coffee的目录编译到JS的同一个目录中
【发布时间】:2013-08-20 16:23:13
【问题描述】:

我怎样才能执行这个简单的命令:coffee --bare --output js/ coffee/ 在 grunt-coffee 配置中?

【问题讨论】:

标签: javascript compiler-construction coffeescript gruntjs


【解决方案1】:

试试

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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2012-02-07
    • 1970-01-01
    • 2021-05-10
    • 1970-01-01
    • 2013-11-02
    • 1970-01-01
    • 2018-01-28
    相关资源
    最近更新 更多