📌(react) update version strategy of peer deps

Currently peer deps are pinned. This is pretty annoying as all app consumers
must stick to the peer deps package version define in Cunningham and must
wait that cunningham upgrades them to upgrade on their side. Allow to
install minor and patch version of react & react-dom.
This commit is contained in:
jbpenrath
2025-10-30 16:06:58 +01:00
committed by Jean-Baptiste PENRATH
parent a2aa9c2e14
commit 4220061bc0
2 changed files with 7 additions and 2 deletions

View File

@@ -42,8 +42,8 @@
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "19.1.0",
"react-dom": "19.1.0"
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"dependencies": {
"@fontsource-variable/roboto-flex": "5.2.5",