-
Hello everyone, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
can you share with us the steps you did that leads you to this error ? |
Beta Was this translation helpful? Give feedback.
-
This is my project setup: In my app.config.ts, I also added the following configuration for updates and caching, as recommended by EAS to continue building: I previously published my app to the App Store using Yarn and an older SDK. Now, I’ve migrated to SDK 52 using your latest template and implemented all the necessary updates. My project now matches your current template exactly, with no changes missed. Environment info: |
Beta Was this translation helpful? Give feedback.
-
🚨 [EAS Build Tip for pnpm users] 📌 Root cause:
✅ Fix: |
Beta Was this translation helpful? Give feedback.
🚨 [EAS Build Tip for pnpm users]
I ran into a frustrating issue where EAS Build was trying to run yarn install even though my project uses pnpm, causing the build to fail.
📌 Root cause:
I had accidentally git-ignored pnpm-lock.yaml, so EAS couldn’t detect that my project uses pnpm. It defaulted to Yarn and failed with this error:
✅ Fix:
Make sure pnpm-lock.yaml is committed to your repo. EAS Build uses it to correctly choose the package manager.
Hope this saves someone else hours of debugging!