rygor-monterosa / broccoli-coffee

CoffeeScript preprocessor for Broccoli

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

broccoli-coffee

Build Status

A CoffeeScript filter for Broccoli.

Installation

npm install --save-dev broccoli-coffee

Usage

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.

About

CoffeeScript preprocessor for Broccoli

License:MIT License


Languages

Language:JavaScript 100.0%