New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

rollup-plugin-regenerator

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-regenerator

A Rollup.js plugin to transform ECMAScript 6 generator and async functions

latest
Source
npmnpm
Version
0.6.0
Version published
Weekly downloads
347
24.37%
Maintainers
1
Weekly downloads
 
Created
Source

rollup-plugin-regenerator

A Rollup.js plugin to transform ECMAScript 6 generator and async functions.

This Rollup plugin will replace async and generator functions with ES5 Promise based functions. Plugin using regenerator module.

BETTER SOLUTION:

  • rollup-plugin-nodent - Convert ES2017 async/await with nodent.

Install

npm install --save-dev rollup-plugin-regenerator

or with yarn

yarn add -D rollup-plugin-regenerator

Usage

var rollup = require('rollup').rollup;
var regenerator = require('rollup-plugin-regenerator');

rollup({
  input: 'my-entry.js',
  context: 'window', // or 'global' for Node.js
  plugins: [
    regenerator()
  ]
}).then(...);

Options

  • includeRuntime: If false - do not include 'regeneratorRuntime()' polyfill (optional).
  • sourceMap: If false - forced disable source maps generating (optional).
  • include, exclude: A minimatch pattern, or an array of minimatch patterns of including ID, or excluding ID (optional).

FAQ

  • I have a warning by Rollup: The 'this' keyword is equivalent to 'undefined' at the top level of an ES module, and has been rewritten. Just specify context option in Rollup input options(as shown above).
  • Does it make sense to use this plugin? I think no. Under the hood regenerator uses babel for transformations, so it's better to use it as a babel plugin.

Contributing

  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request

License

Licensed under MIT license.

Keywords

rollup

FAQs

Package last updated on 04 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts