Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
507 bytes
|
Line | |
---|
1 | # babel-plugin-polyfill-regenerator
|
---|
2 |
|
---|
3 | ## Install
|
---|
4 |
|
---|
5 | Using npm:
|
---|
6 |
|
---|
7 | ```sh
|
---|
8 | npm install --save-dev babel-plugin-polyfill-regenerator
|
---|
9 | ```
|
---|
10 |
|
---|
11 | or using yarn:
|
---|
12 |
|
---|
13 | ```sh
|
---|
14 | yarn add babel-plugin-polyfill-regenerator --dev
|
---|
15 | ```
|
---|
16 |
|
---|
17 | ## Usage
|
---|
18 |
|
---|
19 | Add this plugin to your Babel configuration:
|
---|
20 |
|
---|
21 | ```json
|
---|
22 | {
|
---|
23 | "plugins": [["polyfill-regenerator", { "method": "usage-global" }]]
|
---|
24 | }
|
---|
25 | ```
|
---|
26 |
|
---|
27 | This package supports the `usage-pure`, `usage-global`, and `entry-global` methods.
|
---|
28 | When `entry-global` is used, it replaces imports to `regenerator-runtime`.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.