N1kto / rollup-plugin-coffee-react

Rollup plugin to transpile .coffee and .cjsx files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rollup Coffee React Plugin

Basically this is a simple wrapper around coffee-react-transform. It enables rollup to bundle your .cjsx files. It also transpiles regular .coffee files.

Usage

Install it with npm install rollup-plugin-coffee-react

Then in your rollup.config.js:

import coffeeReact from 'rollup-plugin-coffee-react'

export default {
  dest: 'build/app.js',
  entry: 'src/index.js',
  plugins: [
    coffeeReact({
      exclude: 'node_modules/**'
    })
  ]
}

Usage with other rollup plugins

Since coffee-script compiles into ES5 code, you'll use this plugin in tandem with commonjs and node-resolve plugins. Just don't forget to add .coffee, .cjsx to mentioned plugins' extensions option. For example:

import coffeeReact from 'rollup-plugin-coffee-react'
import commonjs from 'rollup-plugin-commonjs'

export default {
  dest: 'build/app.js',
  entry: 'src/index.js',
  plugins: [
    coffeeReact({
      exclude: 'node_modules/**'
    }),
    nodeResolve({
      main: true,
      browser: true,
      extensions: [ '.js', '.coffee', '.csjx' ]
    }),
    commonjs({
      extensions: [ '.js', '.coffee', '.cjsx' ]
    })
  ]
}

Options

Rollup's include, exclude plugin options are supported. You can also pass options for coffee-script to configure coffee -> js transpiling. Please refer to coffee-script documentation for details.

About

Rollup plugin to transpile .coffee and .cjsx files


Languages

Language:JavaScript 100.0%