Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 460 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 460 Bytes

broccoli-coffee

A CoffeeScript filter for Broccoli.

Installation

npm install --save-dev broccoli-coffee

Usage

var filterCoffeeScript = require('broccoli-coffee');
tree = filterCoffeeScript(tree, options);

Options

bare

If bare is true, the CoffeeScript compiler will not emit a top-level function wrapper:

filterCoffeeScript(tree, {
  bare: true
})

Source Maps

Source maps are not yet supported.