Edit this page
Learn how to set up EAS Build with a monorepo.
To set up EAS Build with a monorepo, you need to follow the standard process as described below:
eas build
from there.postinstall
step to package.json in your project that builds all necessary dependencies in other workspaces. For example:{
"scripts": {
"postinstall": "cd ../.. && yarn build"
}
}