2013-01-10 66 views
-1

我有這個:coffee --output extension/javascripts/ --compile app.coffee,我想添加--watch參數。我怎樣才能實現這個?如何添加--watch參數到咖啡命令?

,因爲當我這樣做,這是行不通的

─$ coffee --output extension/javascripts/ --compile app.coffee --watch 
File not found: --watch.coffee 

回答

3
coffee -o extension/javascripts/ -cw app.coffee 

您可以合併的命令。 (所以cw是編譯和觀看)

+0

它不適合我 – milushov

+0

@milushov idk。它適用於我:-)這是什麼錯誤? – Neal

+0

http://pastebin.com/8ExMMCqV – milushov