# rollup-plugin-buble

> Compile ES2015 with buble

Latest version **0.19.8** (published 2019-07-03) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install rollup-plugin-buble
pnpm add rollup-plugin-buble
yarn add rollup-plugin-buble
bun add rollup-plugin-buble
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.19.8 |
| Published | 2019-07-03 |
| First published | 2016-04-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/rollup-plugin-buble) |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 3.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 43 |
| Author | Rich Harris |
| Maintainers | adrianheine, lukastaegert, rich_harris |

## Links

- npm: https://www.npmjs.com/package/rollup-plugin-buble
- Repository: https://github.com/rollup/rollup-plugin-buble
- Homepage: https://github.com/rollup/rollup-plugin-buble#readme
- Issues: https://github.com/rollup/rollup-plugin-buble/issues
- npm.io page: https://npm.io/package/rollup-plugin-buble

## Dependencies (2)

- [buble](https://npm.io/package/buble.md) ^0.19.8
- [rollup-pluginutils](https://npm.io/package/rollup-pluginutils.md) ^2.3.3

## Recent versions

- 0.19.8 (latest) — 2019-07-03
- 0.19.6 — 2018-12-09
- 0.19.4 — 2018-10-08
- 0.19.2 — 2018-02-13
- 0.19.1 — 2018-02-10
- 0.19.0 — 2018-02-09
- 0.18.0 — 2017-11-18
- 0.17.0 — 2017-11-05
- 0.16.0 — 2017-09-23
- 0.15.0 — 2016-12-13
- 0.14.0 — 2016-09-18
- 0.13.0 — 2016-08-15
- 0.12.1 — 2016-06-23
- 0.12.0 — 2016-06-22
- 0.11.0 — 2016-06-14
- … 11 more at https://npm.io/package/rollup-plugin-buble/versions

## README

# rollup-plugin-buble

Convert ES2015 with buble.


## Installation

```bash
npm install --save-dev rollup-plugin-buble
```


## Usage

```js
import { rollup } from 'rollup';
import buble from 'rollup-plugin-buble';

rollup({
  entry: 'main.js',
  plugins: [ buble() ]
}).then(...)
```

## Options

- `include`: a [micromatch](https://github.com/micromatch/micromatch) pattern, or array of patterns, specifying files to include
- `exclude`: a [micromatch](https://github.com/micromatch/micromatch) pattern, or array of patterns, specifying files to exclude
- `transforms`: an object of transform options, per the [Buble docs](https://buble.surge.sh/guide/)

## License

MIT

---
_Source: https://npm.io/package/rollup-plugin-buble · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
