6to5-brunch

3.0.0 • Public • Published

6to5-brunch

Brunch plugin using 6to5 to turn ES6 code into vanilla ES5 with no runtime required.

All the .js files in your project will be run through the 6to5 compiler, except those it is configured to ignore.

Installation

npm install --save 6to5-brunch

Configuration

Set 6to5 options in your brunch config (such as brunch-config.coffee) except for filename and sourceMap which are handled internally.

Additionally, you can set an ignore value to specify which .js files in your project should not be compiled by 6to5. By default, ignore is set to /^(bower_components|vendor)/.

plugins:
    ES6to5:
        whitelist: ['arrowFunctions']
        format:
            semicolons: false
        ignore: [
            /^(bower_components|vendor)/
            'app/legacyES5Code/**/*'
        ]

Change Log

See release notes page on GitHub

License

ISC

/6to5-brunch/

    Package Sidebar

    Install

    npm i 6to5-brunch

    Weekly Downloads

    14

    Version

    3.0.0

    License

    none

    Last publish

    Collaborators

    • es128
    • thejameskyle