Replies: 1 comment
-
|
Hi @codan84, thanks for reporting this. I don't think that anyone on the team has experience with this particular problem. Feel free to open a PR if you know how to add such support. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Right now when using react-native-reanimated (latest) in an Expo app in pnpm monorepo with isolated node-linker, we get an issue during EAS build:
It seems to be this that causes the issue...
The solution to get the gradle build working for react-native-reanimated in this situation is to set the node-linker to
hoistedfor EAS build, by addingeas-build-pre-installscript in package.json of the app:This enables us to have
isolatedinstalls locally, buthoistedin EAS. However, this introduces potential issues if we have multiple apps in the monorepo, with different versions of native modules (react-native, react etc).Is there a plan to support
isolatedinstalls in react-native-reanimated?Beta Was this translation helpful? Give feedback.
All reactions