Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

rollup/rollup-plugin-buble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moved

This module has moved and is now available at @rollup/plugin-buble. Please update your dependencies. This repository is no longer maintained.

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