Skip to content

Commit 67e743f

Browse files
authored
[compiler] Fix missing dependency in eslint-plugin-react-hooks (#34287)
1 parent 9eede45 commit 67e743f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

packages/eslint-plugin-react-hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@babel/core": "^7.24.4",
4343
"@babel/parser": "^7.24.4",
44-
"@babel/plugin-transform-private-methods": "^7.24.4",
44+
"@babel/plugin-proposal-private-methods": "^7.18.6",
4545
"hermes-parser": "^0.25.1",
4646
"zod": "^3.22.4",
4747
"zod-validation-error": "^3.0.3"

yarn.lock

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,6 +1122,14 @@
11221122
"@babel/helper-create-class-features-plugin" "^7.10.4"
11231123
"@babel/helper-plugin-utils" "^7.10.4"
11241124

1125+
"@babel/plugin-proposal-private-methods@^7.18.6":
1126+
version "7.18.6"
1127+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
1128+
integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
1129+
dependencies:
1130+
"@babel/helper-create-class-features-plugin" "^7.18.6"
1131+
"@babel/helper-plugin-utils" "^7.18.6"
1132+
11251133
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
11261134
version "7.21.0-placeholder-for-preset-env.2"
11271135
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
@@ -1882,7 +1890,7 @@
18821890
"@babel/helper-create-class-features-plugin" "^7.27.1"
18831891
"@babel/helper-plugin-utils" "^7.27.1"
18841892

1885-
"@babel/plugin-transform-private-methods@^7.24.4", "@babel/plugin-transform-private-methods@^7.25.9":
1893+
"@babel/plugin-transform-private-methods@^7.25.9":
18861894
version "7.25.9"
18871895
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz#847f4139263577526455d7d3223cd8bda51e3b57"
18881896
integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==

0 commit comments

Comments
 (0)