Skip to content

Commit 927acb5

Browse files
committed
fix: resolve @types/react-dom to 18.x for web-demo
The root resolutions block still pinned @types/react and @types/react-dom to 17.x. Yarn deduped both the 17.x pin and the new ^18.0.0 devDep from web-demo into a single lockfile entry resolving to 17.0.16. npm then found 17.0.16 in the tree while web-demo declared ^18.0.0, causing ERESOLVE on the new npm-install-compatibility CI job. Bumps the resolutions pins to ^18.0.0 and splits the yarn lockfile entries so ^18.0.0 resolves to 18.3.7 / 18.3.28. TICKET: VL-5111
1 parent a5b79d8 commit 927acb5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
"jspdf": ">=4.2.1",
7272
"@ethereumjs/util": "8.0.3",
7373
"@types/keyv": "3.1.4",
74-
"@types/react": "17.0.24",
75-
"@types/react-dom": "17.0.16",
74+
"@types/react": "^18.0.0",
75+
"@types/react-dom": "^18.0.0",
7676
"@solana/web3.js": "1.95.8",
7777
"**/nise/**/path-to-regexp": "8.4.0",
7878
"**/express/**/path-to-regexp": "0.1.13",

0 commit comments

Comments
 (0)