@eflexsystems/broccoli-coffee
v2.0.0
Published
CoffeeScript filter for Broccoli
Readme
broccoli-coffee
A CoffeeScript filter for Broccoli.
Installation
npm install --save-dev broccoli-coffeeUsage
var BroccoliCoffee = require('broccoli-coffee');
var outputNode = new BroccoliCoffee(inputNode, options);All .coffee files (as well as .litcoffee and .coffee.md) in inputNode
will be replaced with compiled .js files in outputNode.
Options
bare
If bare is true, the CoffeeScript compiler will not emit a top-level
function wrapper:
new BroccoliCoffee(node, {
bare: true
})Source Maps
Source maps are not yet supported.
