React Native 0.73.1 and Expo 50 - incompatible with @react-three/[email protected] - what would you do? #3136
-
I have these dependencies: Thanks! Here is the terminal log: npm install three @react-three/fiber |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is NPM >=7 being pedantic about preview versions which break SemVer ranges like you specified in your package.json. I would either install the latest or correct Expo version within that range (use |
Beta Was this translation helpful? Give feedback.
This is NPM >=7 being pedantic about preview versions which break SemVer ranges like you specified in your package.json. I would either install the latest or correct Expo version within that range (use
^
to pin to major or~
to minor). NPM is installing.0-preview
which doesn't conform to the usual SemVer range. You can bypass this with--legacy-peer-deps
if you are sure this is correct.