Skip to content

Commit

Permalink
upgrade babel dependencies + config to support core-js@3 (#125)
Browse files Browse the repository at this point in the history
* upgrade babel dependencies + config to support core-js@3 (likely a breaking change for core-js@2)

* temporarily include core-js in dependencies

* move core-js to devDependency
  • Loading branch information
mckernanin authored and tizmagik committed May 20, 2019
1 parent d7cc440 commit 16fecfd
Show file tree
Hide file tree
Showing 3 changed files with 759 additions and 243 deletions.
10 changes: 7 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
["@babel/preset-env", {
"useBuiltIns": "usage"
}],
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
],
"@babel/preset-react"
]
}

0 comments on commit 16fecfd

Please sign in to comment.