Skip to content

Commit

Permalink
fix: regeneratorRuntime is not defined. fix denysdovhan#374
Browse files Browse the repository at this point in the history
  • Loading branch information
denysdovhan committed Apr 27, 2022
1 parent 64c8f71 commit 65382d3
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"presets": ["@babel/preset-env"]
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-transform-runtime"]
}
52 changes: 52 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
commonjs(),
json(),
babel({
babelHelpers: 'bundled',
babelHelpers: 'runtime',
exclude: 'node_modules/**',
}),
postcss({
Expand Down

0 comments on commit 65382d3

Please sign in to comment.