-1

I have this: coffee --output extension/javascripts/ --compile app.coffee and I want to add --watch parameter. How can I implement this?

because when I do so, it does not work

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

1 に答える 1

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

コマンドを組み合わせることができます。(cwコンパイルとウォッチも同様です)

于 2013-01-10T18:44:33.863 に答える