rollup-plugin-coffee2

0.1.16 • Public • Published

rollup-plugin-coffee2 NPM version Build Status Coverage Status Dependency Status Gitter chat

A Rollup.js plugin that compiles CoffeeScript 2 (and 1).

Install

$ npm install rollup-plugin-coffee2 --save-dev

Usage

Add the following code to your project's rollup.config.js:

import coffee2 from 'rollup-plugin-coffee2';
 
export default {
  entry: 'index.js',
  plugins: [
    coffee2({
      // defaults
      bare:       true,
      extensions: ['.coffee', '.litcoffee'],
      version:    'auto'
      between )
      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

Package Sidebar

Install

npm i rollup-plugin-coffee2

Weekly Downloads

17

Version

0.1.16

License

MIT

Unpacked Size

50.7 kB

Total Files

11

Last publish

Collaborators

  • zeekay