Skip to content

Transforms Async functions to generator functions before bundling.

Notifications You must be signed in to change notification settings

leebyron/rollup-plugin-async

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rollup Async functions plugin

Build Status

This Rollup plugin will replace async functions with generator functions that can run in modern browsers or in most versions of node.js during bundling using async-to-gen.

Install

npm install --save rollup-plugin-async
var rollup = require('rollup').rollup;
var async = require('rollup-plugin-async');

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

About

Transforms Async functions to generator functions before bundling.

Resources

Stars

Watchers

Forks

Packages

No packages published