@rmw/rollup-plugin-coffee
v0.1.21
Published
A Rollup.js plugin to compile CoffeeScript 2 (and 1)
Downloads
1
Maintainers
Readme
@zeekay/rollup-plugin-coffee
A Rollup.js plugin that compiles CoffeeScript. Uses
find-coffee
to locate the proper
version of CoffeeScript.
Install
$ npm install @zeekay/rollup-plugin-coffee --save-dev
Usage
Add the following code to your project's rollup.config.js
:
import coffee from '@zeekay/rollup-plugin-coffee';
export default {
entry: 'index.js',
plugins: [
coffee({
// defaults
bare: true,
extensions: ['.coffee', '.litcoffee'],
version: 'auto',
sourceMap: true
})
]
};
By default this plugin will use any version of CoffeeScript available, trying to use 2.0 and falling back to 1.0 if necessary.
You can specify version: 1
or version: 2
to ensure a certain version is used
(or error if it's unavailable).
License
MIT