コンパイル時にワーニングが出るようになっていた。
$ coffee -c sample.coffee
path.exists is now called 'fs.exists'.
ググるとpath.existsがfs.existsに変わったとかある???
よくわからんが一箇所path.exists をfs.existsに置き換えたらワーニングが出なくなった。
command.js
412行あたり
- return path.exists(jsDir, function(exists) {
+ return fs.exists(jsDir, function(exists) {
いいのか?