From cd25fb324018ed97a42e1d7ec8d923c09eef4f63 Mon Sep 17 00:00:00 2001 From: Lorenzo Sciandra Date: Fri, 28 Oct 2022 13:01:48 -0700 Subject: [PATCH] chore(deps): add wanted dependencies to remove yarn warnings (#35122) Summary: This is take 2 of this https://github.com/facebook/react-native/pull/35088, see this comment for why https://github.com/facebook/react-native/pull/35088#issuecomment-1295091902 I wanted to start working on a thing but this barrage of warnings was very annoying so ended up doing this instead: a very small PR to take care of some warnings during yarn install. It doesn't change anything (the versions are the ones already used all around the repo), just makes yarn happier. ## Changelog [General] [Fixed] - add wanted dependencies to remove yarn warnings Pull Request resolved: https://github.com/facebook/react-native/pull/35122 Test Plan: ### Before Screenshot 2022-10-26 at 10 53 32 ### After Screenshot 2022-10-26 at 10 52 19 Reviewed By: cortinico Differential Revision: D40804260 Pulled By: rshest fbshipit-source-id: 86af14c885d6d63a0d60bb85f204d17d8757f72a --- packages/hermes-inspector-msggen/package.json | 1 + packages/react-native-bots/package.json | 1 + packages/react-native-codegen/package.json | 1 + 3 files changed, 3 insertions(+) diff --git a/packages/hermes-inspector-msggen/package.json b/packages/hermes-inspector-msggen/package.json index cd9d385f72f..68b2d0f949c 100644 --- a/packages/hermes-inspector-msggen/package.json +++ b/packages/hermes-inspector-msggen/package.json @@ -18,6 +18,7 @@ }, "devDependencies": { "@babel/cli": "^7.14.0", + "@babel/core": "^7.14.0", "@babel/preset-env": "^7.14.0", "@babel/preset-flow": "^7.14.0", "jest": "^29.2.1" diff --git a/packages/react-native-bots/package.json b/packages/react-native-bots/package.json index 563c64e5a57..a4a01050722 100644 --- a/packages/react-native-bots/package.json +++ b/packages/react-native-bots/package.json @@ -5,6 +5,7 @@ "devDependencies": { "@seadub/danger-plugin-eslint": "^3.0.2", "danger": "^11.0.2", + "eslint": "^8.19.0", "lodash.includes": "^4.3.0", "minimatch": "^3.0.4" }, diff --git a/packages/react-native-codegen/package.json b/packages/react-native-codegen/package.json index 99bb30580ae..6a25c97458b 100644 --- a/packages/react-native-codegen/package.json +++ b/packages/react-native-codegen/package.json @@ -33,6 +33,7 @@ "@babel/plugin-transform-async-to-generator": "^7.0.0", "@babel/plugin-transform-destructuring": "^7.0.0", "@babel/plugin-transform-flow-strip-types": "^7.0.0", + "@babel/preset-env": "^7.14.0", "chalk": "^4.0.0", "glob": "^7.1.1", "invariant": "^2.2.4",