Package Exports
- rollup-plugin-buble
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rollup-plugin-buble) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
rollup-plugin-buble
Convert ES2015 with buble.
Installation
npm install --save-dev rollup-plugin-buble
Usage
import { rollup } from 'rollup';
import buble from 'rollup-plugin-buble';
rollup({
entry: 'main.js',
plugins: [ buble() ]
}).then(...)
Options
include
: a micromatch pattern, or array of patterns, specifying files to includeexclude
: a micromatch pattern, or array of patterns, specifying files to excludetransforms
: an object of transform options, per the Buble docs
License
MIT