mono-repo EAS build
locallly I have these variables
CONVEX_DEPLOYMENT
EXPO_PUBLIC_CONVEX_URL
CLERK_SECRET_KEY
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY
to build with EAS, what secrets will I need for production. I am guessing these
CONVEX_DEPLOY_KEY
CLERK_SECRET_KEY
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY
for production on Vercel, having these variables worked
CONVEX_DEPLOY_KEY
CLERK_SECRET_KEY
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
1 Reply
I have a monorepo, but keep getting the following error when running the build
Error: Cannot find module '/private/var/folders/qx/bqgqkws95fd7vr52qbptn18c0000gn/T/eas-build-local-nodejs/33f02687-ad6d-4f6d-9b41-2e3f81fa4198/build/.yarn/releases/yarn-4.3.0.cjs'
/.yarn/releases/yarn-4.3.0.cjs (exists)
my native app is in
/apps/native/
from that directory I run
eas build --platform android --local
Finally got it to work
Had to copy the cjs file and change the yarn path in the yarnrc.yaml
in the root directory I had to MONO-REPO-CONVEX/.yarnrc.yml
yarnPath: apps/native/yarn-4.3.1.cjs
I think this is getting used when building from root as well