Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

rollup-regenerator-runtime

ForbesLindesay204MIT6.23.1

regenerator selfContained runtime for use with rollup

readme

rollup-regenerator-runtime

Use this to add regenerator to any library that's compiled using rollup.

Installation

N.B. because rollup will compile everything into one bundle, you can install everything as a dev-dependency

npm install --save-dev rollup-regenerator-runtime babel-plugin-transform-runtime babel-plugin-transform-regenerator

Usage

{
  "plugins": [
    "transform-regenerator",
    ["transform-runtime", {
      "helpers": false,
      "polyfill": false,
      "regenerator": true,
      "moduleName": "rollup-regenerator-runtime"
    }]
  ]
}