Compile CoffeeScript files to JavaScript with the CoffeeScript Redux compiler.
If you haven't used grunt before, be sure to check out the Getting Started guide, as it explains how to create a gruntfile as well as install and use grunt plugins. Once you're familiar with that process, install this plugin with this command:
npm install grunt-coffee-redux --save-dev
Run this task with the grunt coffeeredux
command.
This task is a [multi task][] so any targets, files and options should be specified according to the [multi task][] documentation. [multi task]: https://github.com/gruntjs/grunt/wiki/Configuring-tasks
This plugin provides the CoffeeScript Redux compiler.
Type: boolean
Default: no
Compile the JavaScript without the top-level function safety wrapper.
Type: boolean
Default: no
Create a source map and a CoffeeScript file with all concatenated sources in the same folder as the target JavaScript file.
The source map will be named like this: #{targetJsFileName}map.json
, e.g.:
helloworld.jsmap.json
.
The CoffeeScript file with all concatenated sources will be named like this:
#{targetJsFileName}.coffee
, e.g.: helloworld.js.coffee
.
coffeeredux:
options:
bare: false
sourceMap: true
compile:
files:
'tmp/helloworld.js': [
'test/fixtures/hello.coffee'
'test/fixtures/world.coffee'
]
This configuration will create following files in the tmp
folder:
-
helloworld.js.coffee
: This is the result of the concatenation of the fileshello.coffee
andworld.coffee
. -
helloworld.jsmap.json
: The source map who is pointing to thehelloworld.js.coffee
. -
'helloworld.js': Is the to JavaScript compiled version of the
helloworld.js.coffee
file.
- 2013-02-10 v0.2.2 Fixed error logging
- 2013-02-10 v0.2.1 Updated coffee redux dependency to 2.0.0beta2 Updated grunt-contrib-internal to get working links in the README.md
- 2013-01-19 v0.2.0 Show in which file a parse error has happened.
- 2013-01-19 v0.1.0 Initial npm release
Task submitted by Moritz Heuser
This file was generated on Sun Feb 10 2013 11:15:56.