npm.io
0.19.8 • Published 7 years ago

rollup-plugin-buble

Licence
MIT
Version
0.19.8
Deps
2
Size
4 kB
Vulns
0
Weekly
0
Stars
43
DeprecatedThis package is deprecated

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 include
  • exclude: a micromatch pattern, or array of patterns, specifying files to exclude
  • transforms: an object of transform options, per the Buble docs

License

MIT