grails-coffeescript-resources
grails-coffeescript-resources copied to clipboard
Another CoffeeScript compiler for Grails
A configuration option that allows to use bare compile, w/o wrapping in an anonymous function (--bare option for compiler). Useful for some cases.
I faced a problem while working with coffeescript-resources inside my plugin. The problem is: plugin mapper looks the wrong filepath when trying to compile in-plugin's .coffee, so compilation fails. ```...
To reproduce: 1. grails clean 2. grails run-app 3. [ERROR] grails.app.resourceMappers.CoffeeScriptResourceMapper - Problems compiling CoffeeScript /cs/test.coffee java.io.FileNotFoundException: /home/topr/devel/proj/touk/ko/repo/ko-web/web-app/cs/test.coffee (No such file or directory) Uninstalling and installing again the plugin fixes...
Assuming we have a view which use with for any module defined at ApplicationResources.groovy: 1. grails clean 2. grails run-app 3. open in a browser the url corresponding to the...
Trying to use this plugin with ember-templates-precompiler which requires the newer resources plugin. this plugin does work with RC2 but keeps trying to install 1.1.6, anyway we can get a...
There is a new coffeescript compiler, [CoffeeScriptRedux](http://ryanflorence.com/2012/coffeescript-source-maps/), released today which supports [source maps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/). These effectively eliminate the debugging challenges associated coffeescript by providing linkage between the compiled JavaScript and the...
Some of the older documentation mentions the use of coffeescript.modules in Config.groovy. This does not seem to work with coffeescript-resources 0.3.2 in Grails 2.1. The resource plugin integration is great...
If you have enabled debug mode for resourses, in `Config.groovy`: `grails.resources.debug = true` plugin doesn't apply, and you are getting source of your .coffee file. Actually it's because of resource...
Hi, I installed this plugin using command grails install-plugin coffeescript-resources . It creates a folder coffee under src src/coffee.Created file bookscroll.coffee . Added entry into config.groovy. coffeescript.modules = { bookScroll...