2013-08-20 68 views
0

我怎樣才能做到這個簡單的命令:coffee --bare --output js/ coffee/ grunt-coffee config?編譯咖啡目錄到JS的相同目錄中

+0

[咕嚕等於0.4的任務:如何不串連目標文件]中可能重複(http://stackoverflow.com/questions/15344584/grunt-0-4-less-task-如何對未接續模式目的地文件) –

回答

1

嘗試

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