eas and script updates

This commit is contained in:
Josh Guyette 2024-01-09 03:00:52 -06:00
parent 1ca88b176c
commit b8697545b7
2 changed files with 10 additions and 11 deletions

View File

@ -3,15 +3,14 @@
"version": ">= 2.7.1"
},
"build": {
"local": {
"adhoc": {
"distribution": "internal",
"android": {
"buildType": "apk",
"image": "latest"
},
"ios": {
"simulator": true
}
"channel": "internal"
},
"adhoc:dev": {
"distribution": "internal",
"channel": "internal",
"developmentClient": true
},
"development": {
"developmentClient": true,

View File

@ -7,10 +7,10 @@
"android": "npx expo start --android",
"ios": "npx expo start --ios",
"web": "npx expo start --web",
"build:local": "eas build --profile local --local",
"build:adhoc": "eas build --profile adhoc --local",
"build:dev": "eas build --profile development --local",
"build:preview": "node scripts/updateVersion.js && eas build --profile preview --local",
"build:production": "node scripts/updateVersion.js && eas build --profile production --local",
"build:preview": "eas build --profile preview --local",
"build:production": "eas build --profile production --local",
"eas:preview": "eas build --profile preview --auto-submit",
"eas:production": "eas build --profile production --auto-submit",
"submit:preview": "eas submit --profile preview",