@zeekay/rollup-plugin-coffee

0.1.19 • Public • Published

@zeekay/rollup-plugin-coffee

NPM version Build Status Coverage Status Dependency Status Gitter chat

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

Package Sidebar

Install

npm i @zeekay/rollup-plugin-coffee

Weekly Downloads

1

Version

0.1.19

License

MIT

Unpacked Size

65.8 kB

Total Files

13

Last publish

Collaborators

  • zeekay