Skip to content

Commit 77ba172

Browse files
committed
deps: Upgrade babel-related dependencies.
Done with `yarn upgrade --latest $(tools/deps | grep 'babel')`. Also tried `yarn upgrade --latest --pattern 'babel', which seems to be equivalent. Got just one warning, and it wasn't a peer-dep warning: """ warning rollup-plugin-babel@4.4.0: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel. """ In the next commit, we'll switch to that newer package. This covers (and goes beyond) facebook/react-native@cef001713, part of the RN v0.61 -> v0.62 changes to the template app [1], in which `metro-react-native-babel-preset` is taken from ^0.56.0 to ^0.58.0. Also, run `yarn yarn-deduplicate && yarn` as prompted by `tools/test deps`. [1] https://react-native-community.github.io/upgrade-helper/?from=0.61.5&to=0.62.2
1 parent 333c312 commit 77ba172

File tree

2 files changed

+145
-56
lines changed

2 files changed

+145
-56
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
"zulip-markdown-parser": "^1.0.6"
9393
},
9494
"devDependencies": {
95-
"@babel/core": "^7.6.2",
96-
"@babel/preset-env": "^7.6.3",
95+
"@babel/core": "^7.11.4",
96+
"@babel/preset-env": "^7.11.0",
9797
"@babel/runtime": "^7.6.2",
9898
"@jest/source-map": "^26.1.0",
9999
"babel-eslint": "^10.0.3",
@@ -120,15 +120,15 @@
120120
"jest-extended": "^0.11.5",
121121
"jetifier": "^1.6.5",
122122
"lolex": "^5.1.1",
123-
"metro-react-native-babel-preset": "^0.56.0",
123+
"metro-react-native-babel-preset": "^0.63.0",
124124
"prettier": "^1.18.2",
125125
"prettier-eslint": "^11.0.0",
126126
"prettier-eslint-cli": "^5.0.0",
127127
"prop-types": "^15.7.2",
128128
"react-native-cli": "^2.0.1",
129129
"redux-mock-store": "^1.5.1",
130130
"rollup": "^1.23.1",
131-
"rollup-plugin-babel": "^4.3.3",
131+
"rollup-plugin-babel": "^4.4.0",
132132
"rollup-plugin-node-resolve": "^5.2.0",
133133
"yarn-deduplicate": "^1.1.1"
134134
}

0 commit comments

Comments
 (0)