using push notifications component in monorepo with react native expo
convex component expo push notifications. I have a monorepo (using turbo-repo + pnpm) with 2 apps: a react-native expo (SDK 52) app and my convex backend. This is (roughly) the monorepo project structureIn my expo application, I import various functions from the
expo-notifications lib. E.g to retrieve the push token:But I'm observing that if I install the convex dependency
@convex-dev/expo-push-notifications in the monorepo, it seems to be messing up something with the expo-notifications lib in the client app because I get the following error at the import statement:If I remove the convex dependency from the monorepo then the client app works again without issue. I can't tell if the issue is with my monorepo setup or something else. But this error occurs every time I install
@convex-dev/expo-push-notifications as a dependency in the monorepo
