coffeescripted-sbt 0.2.2
- Speedier coffee compiles using a shared compiler #10 { stephenjudkins }
If you've got n coffeescript source files, don't evaluate the coffeescript compiler n times, do it once per sbt session.
- Consider
icingyour coffee #11.
Is your plain vanilla coffeescript just not cutting it anymore. Try iced coffee with support for better asyncronous primitives await and defer. I recommend checking out the comparisons to vanilla coffeescript in terms of how they react to change in requirements. The arguments are pretty convincing. Enable this but changing the CoffeeKeys iced setting to true.
(CoffeeKeys.iced in (Compile, CoffeeKeys.coffee)) := true
Note, iced coffeescript is a superset of coffeescript, meaning all of your coffeescript will work without change under the iced compiler. In iced mode, all .coffee and .iced files will get compiled using the iced compiler. You can revert back to standard coffeescript by leaving the iced setting as false. Only .coffee files will be compiled under the default coffee compiler, leaving you free to mix ice with your coffee safely.
coffeescripted-sbt compiles your CoffeeScripts so you don't have to.
