1. rollup-plugin-buble
Compile ES2015 with buble
rollup-plugin-buble
Package: rollup-plugin-buble
Created by: rollup
Last modified: Sun, 26 Jun 2022 13:58:04 GMT
Version: 0.19.8
License: MIT
Downloads: 97,145
Repository: https://github.com/rollup/rollup-plugin-buble

Install

npm install rollup-plugin-buble
yarn add rollup-plugin-buble

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

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin