From b8697545b7bec20336a2e6479bdc70383d8adc7c Mon Sep 17 00:00:00 2001 From: Josh Guyette Date: Tue, 9 Jan 2024 03:00:52 -0600 Subject: [PATCH] eas and script updates --- eas.json | 15 +++++++-------- package.json | 6 +++--- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/eas.json b/eas.json index 1985877..3ee6ac0 100644 --- a/eas.json +++ b/eas.json @@ -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, diff --git a/package.json b/package.json index 57ddedb..5e31993 100644 --- a/package.json +++ b/package.json @@ -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",