managarten/apps/matrix/apps/mobile/eas.json
Till JS a7acffd3e8 fix(matrix-mobile): use string format for pnpm version in eas.json
EAS CLI requires pnpm to be a version string, not an object.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 19:50:54 +01:00

37 lines
578 B
JSON

{
"cli": {
"version": ">= 15.0.15",
"appVersionSource": "remote"
},
"build": {
"base": {
"node": "22.22.1",
"pnpm": "9.15.0",
"env": {
"EAS_BUILD_RUNNER": "eas-build-on-success"
}
},
"development": {
"extends": "base",
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"extends": "base",
"distribution": "internal",
"ios": {
"simulator": true
}
},
"production": {
"extends": "base",
"autoIncrement": true,
"ios": {
"image": "latest"
}
}
},
"submit": {
"production": {}
}
}