Skip to content

Commit

Permalink
Remove Deprecated @babel/polyfill (#877)
Browse files Browse the repository at this point in the history
* Remove Deprecated @babel/polyfill

* fix babel jest

* run against bleeding edge
  • Loading branch information
dplewis authored Jul 31, 2019
1 parent 2f809ea commit 81ddc94
Show file tree
Hide file tree
Showing 4 changed files with 1,234 additions and 1,907 deletions.
4 changes: 3 additions & 1 deletion babel-jest.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ module.exports = babelJest.createTransformer({
presets: [["@babel/preset-env", {
"targets": {
"node": "8"
}
},
useBuiltIns: 'entry',
corejs: 3,
}]],
plugins: ['@babel/plugin-transform-flow-comments'],
});
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var BUILD = process.env.PARSE_BUILD || 'browser';
var VERSION = require('./package.json').version;

var transformRuntime = ["@babel/plugin-transform-runtime", {
"corejs": false,
"corejs": 3,
"helpers": true,
"regenerator": true,
"useESModules": false
Expand Down
Loading

0 comments on commit 81ddc94

Please sign in to comment.