rollup-plugin-polyfill

4.2.0 • Public • Published

rollup-plugin-polyfill

Rollup Plugin to include a polyfill in your bundle. Literally injects a require or import statement in the beginning of your entry files. This is useful if you only want to include certain logic in some variants of your build.

API

polyfill(packages)

  • packages is a list of modules to be resolved in your bundle.

Usage

Check out the example folder to see more configurations

const polyfill = require('rollup-plugin-polyfill')
const resolve = require('rollup-plugin-node-resolve')
const commonjs = require('rollup-plugin-commonjs')

const plugins = [
  resolve(),
  commonjs(),
  polyfill(['es6-object-assign/auto', './string-reverse.js']),
]

export default {
  input: 'index.js',
  output: {
    file: 'bundle.js',
    format: 'iife',
    name: 'example'
  },
  plugins: plugins
}

Readme

Keywords

Package Sidebar

Install

npm i rollup-plugin-polyfill

Weekly Downloads

1,051

Version

4.2.0

License

MIT

Unpacked Size

5.58 kB

Total Files

4

Last publish

Collaborators

  • jrjurman