I use CoffeeScript 1.6.3. While developing, I just run with coffee myapp.

I also run coffee -c . to examine resulted .js files.

However, when running coffee myapp again, coffee util for require(./module) takes .js file instead of .coffee. While usually latest code version is in .coffee files.

Is it bug of coffe 1.6.3 util or there is some option to change that behavior?

有帮助吗?

解决方案

What I usually do is run coffee --watch on my source tree, so whenever a .coffee file changes I immediately get it's .js counterpart.

Your imports will work fine, and you'll always have the latest .js from the latest .coffee as well.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top