문제

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