As the documentation describes: CoffeeScript sources are compiled automatically during an assets command, or when you refresh any page in your browser while you are running in development mode.
So, if you are not in development mode , you should use the assets command to compile your CoffeeScript manually.
Before entering the assets command, make sure you add the sbt-coffeescript plugin to your project by adding the following line to your project/plugins.sbt file:
addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
After enabling CoffeeScript compilation, adding the previous line, change to the dorctory root directory and enter the sbt command. In the sbt command shell sbt you can enter the assets command, and you get some result like this:
$ assets [info] CoffeeScript compiling on 1 source(s) [success] Total time: 4 s, completed May 30, 2015 9:43:29 PM
As you can see, CoffeeScript compiles successfully.
xring
source share