Skip to content

Commit

Permalink
bump @babel/* dev dependencies (#10648)
Browse files Browse the repository at this point in the history
* bump @babel/* dev dependencies

* chore: align version to @babel/runtime

* chore: bump to 7.7.1

* chore: bump to 7.7.2
  • Loading branch information
JLHwung authored and nicolo-ribaudo committed Nov 12, 2019
1 parent f71338b commit ce070ce
Show file tree
Hide file tree
Showing 3 changed files with 322 additions and 318 deletions.
5 changes: 4 additions & 1 deletion babel.config.js
Expand Up @@ -123,7 +123,10 @@ module.exports = function(api) {
],
plugins: [
includeRuntime
? ["@babel/transform-runtime", { version: "7.4.4" }]
? [
"@babel/transform-runtime",
{ version: require("@babel/runtime/package").version },
]
: null,
].filter(Boolean),
},
Expand Down
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -9,20 +9,20 @@
"test": "make test"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/eslint-plugin-development": "^1.0.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@babel/register": "^7.7.0",
"@babel/runtime": "^7.7.2",
"babel-eslint": "^11.0.0-beta.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
Expand Down

0 comments on commit ce070ce

Please sign in to comment.