eas-cli 12.4.1 → 12.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +66 -62
- package/build/build/evaluateConfigWithEnvVarsAsync.d.ts +1 -4
- package/build/build/evaluateConfigWithEnvVarsAsync.js +3 -6
- package/build/build/local.js +19 -11
- package/build/build/runBuildAndSubmit.d.ts +0 -2
- package/build/build/runBuildAndSubmit.js +0 -1
- package/build/commandUtils/flags.d.ts +0 -3
- package/build/commandUtils/flags.js +1 -15
- package/build/commands/build/index.d.ts +0 -2
- package/build/commands/build/index.js +0 -2
- package/build/commands/build/resign.d.ts +0 -1
- package/build/commands/build/resign.js +0 -2
- package/build/commands/build/version/get.d.ts +0 -1
- package/build/commands/build/version/get.js +0 -2
- package/build/commands/build/version/set.d.ts +0 -1
- package/build/commands/build/version/set.js +0 -3
- package/build/commands/build/version/sync.d.ts +0 -1
- package/build/commands/build/version/sync.js +0 -3
- package/build/commands/config.d.ts +0 -1
- package/build/commands/config.js +0 -2
- package/build/commands/env/exec.d.ts +23 -0
- package/build/commands/env/exec.js +124 -0
- package/build/commands/submit/internal.d.ts +24 -0
- package/build/commands/submit/internal.js +168 -0
- package/build/commands/update/republish.d.ts +2 -0
- package/build/commands/update/republish.js +34 -4
- package/build/commands/worker/deploy.js +15 -14
- package/build/credentials/manager/Actions.d.ts +4 -2
- package/build/credentials/manager/Actions.js +2 -0
- package/build/credentials/manager/AndroidActions.js +5 -0
- package/build/credentials/manager/IosActions.js +5 -0
- package/build/credentials/manager/ManageAndroid.js +3 -0
- package/build/credentials/manager/ManageIos.js +3 -0
- package/build/graphql/generated.d.ts +165 -32
- package/build/graphql/generated.js +1 -0
- package/build/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +8 -0
- package/build/graphql/queries/AppStoreConnectApiKeyQuery.js +32 -0
- package/build/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +6 -0
- package/build/graphql/queries/GoogleServiceAccountKeyQuery.js +25 -0
- package/build/graphql/types/Submission.js +1 -1
- package/build/project/android/applicationId.js +3 -3
- package/build/project/expoConfig.js +0 -15
- package/build/project/ios/bundleIdentifier.js +3 -3
- package/build/project/publish.js +3 -2
- package/build/submit/ArchiveSource.js +15 -1
- package/build/submit/BaseSubmitter.d.ts +1 -0
- package/build/submit/BaseSubmitter.js +5 -2
- package/build/submit/android/AndroidSubmitCommand.d.ts +2 -2
- package/build/submit/android/AndroidSubmitCommand.js +1 -1
- package/build/submit/ios/IosSubmitCommand.d.ts +2 -2
- package/build/submit/ios/IosSubmitCommand.js +1 -1
- package/build/submit/submit.js +2 -1
- package/build/submit/utils/builds.js +22 -10
- package/build/submit/utils/logs.js +16 -17
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.d.ts +5 -0
- package/build/update/{getBranchNameFromChannelNameAsync.js → getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js} +8 -7
- package/build/update/republish.js +2 -2
- package/build/utils/prompts.js +3 -3
- package/build/worker/assets.d.ts +1 -1
- package/build/worker/assets.js +4 -2
- package/build/worker/deployment.d.ts +10 -0
- package/build/worker/deployment.js +38 -27
- package/build/worker/upload.js +4 -6
- package/build/worker/utils/logs.d.ts +14 -13
- package/build/worker/utils/logs.js +18 -18
- package/oclif.manifest.json +103 -79
- package/package.json +7 -6
- package/build/update/getBranchNameFromChannelNameAsync.d.ts +0 -2
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "12.
|
|
2
|
+
"version": "12.5.1",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -54,19 +54,6 @@
|
|
|
54
54
|
"hidden": true,
|
|
55
55
|
"allowNo": false
|
|
56
56
|
},
|
|
57
|
-
"environment": {
|
|
58
|
-
"name": "environment",
|
|
59
|
-
"type": "option",
|
|
60
|
-
"description": "Environment variable's environment",
|
|
61
|
-
"hidden": true,
|
|
62
|
-
"helpValue": "(development|preview|production)",
|
|
63
|
-
"multiple": false,
|
|
64
|
-
"options": [
|
|
65
|
-
"development",
|
|
66
|
-
"preview",
|
|
67
|
-
"production"
|
|
68
|
-
]
|
|
69
|
-
},
|
|
70
57
|
"json": {
|
|
71
58
|
"name": "json",
|
|
72
59
|
"type": "boolean",
|
|
@@ -787,19 +774,6 @@
|
|
|
787
774
|
"type": "boolean",
|
|
788
775
|
"description": "Run the command in non-interactive mode.",
|
|
789
776
|
"allowNo": false
|
|
790
|
-
},
|
|
791
|
-
"environment": {
|
|
792
|
-
"name": "environment",
|
|
793
|
-
"type": "option",
|
|
794
|
-
"description": "Environment variable's environment",
|
|
795
|
-
"hidden": true,
|
|
796
|
-
"helpValue": "(development|preview|production)",
|
|
797
|
-
"multiple": false,
|
|
798
|
-
"options": [
|
|
799
|
-
"development",
|
|
800
|
-
"preview",
|
|
801
|
-
"production"
|
|
802
|
-
]
|
|
803
777
|
}
|
|
804
778
|
},
|
|
805
779
|
"args": {},
|
|
@@ -1182,19 +1156,6 @@
|
|
|
1182
1156
|
"type": "boolean",
|
|
1183
1157
|
"description": "Run the command in non-interactive mode.",
|
|
1184
1158
|
"allowNo": false
|
|
1185
|
-
},
|
|
1186
|
-
"environment": {
|
|
1187
|
-
"name": "environment",
|
|
1188
|
-
"type": "option",
|
|
1189
|
-
"description": "Environment variable's environment",
|
|
1190
|
-
"hidden": true,
|
|
1191
|
-
"helpValue": "(development|preview|production)",
|
|
1192
|
-
"multiple": false,
|
|
1193
|
-
"options": [
|
|
1194
|
-
"development",
|
|
1195
|
-
"preview",
|
|
1196
|
-
"production"
|
|
1197
|
-
]
|
|
1198
1159
|
}
|
|
1199
1160
|
},
|
|
1200
1161
|
"args": {},
|
|
@@ -2026,6 +1987,47 @@
|
|
|
2026
1987
|
"privateProjectConfig": {}
|
|
2027
1988
|
}
|
|
2028
1989
|
},
|
|
1990
|
+
"env:exec": {
|
|
1991
|
+
"id": "env:exec",
|
|
1992
|
+
"description": "execute a bash command with environment variables from the selected environment",
|
|
1993
|
+
"strict": true,
|
|
1994
|
+
"pluginName": "eas-cli",
|
|
1995
|
+
"pluginAlias": "eas-cli",
|
|
1996
|
+
"pluginType": "core",
|
|
1997
|
+
"hidden": true,
|
|
1998
|
+
"aliases": [],
|
|
1999
|
+
"flags": {
|
|
2000
|
+
"environment": {
|
|
2001
|
+
"name": "environment",
|
|
2002
|
+
"type": "option",
|
|
2003
|
+
"description": "Environment variable's environment",
|
|
2004
|
+
"helpValue": "(development|preview|production)",
|
|
2005
|
+
"multiple": false,
|
|
2006
|
+
"options": [
|
|
2007
|
+
"development",
|
|
2008
|
+
"preview",
|
|
2009
|
+
"production"
|
|
2010
|
+
]
|
|
2011
|
+
},
|
|
2012
|
+
"non-interactive": {
|
|
2013
|
+
"name": "non-interactive",
|
|
2014
|
+
"type": "boolean",
|
|
2015
|
+
"description": "Run the command in non-interactive mode.",
|
|
2016
|
+
"allowNo": false
|
|
2017
|
+
}
|
|
2018
|
+
},
|
|
2019
|
+
"args": {
|
|
2020
|
+
"BASH_COMMAND": {
|
|
2021
|
+
"name": "BASH_COMMAND",
|
|
2022
|
+
"description": "bash command to execute with the environment variables from the environment",
|
|
2023
|
+
"required": true
|
|
2024
|
+
}
|
|
2025
|
+
},
|
|
2026
|
+
"contextDefinition": {
|
|
2027
|
+
"loggedIn": {},
|
|
2028
|
+
"privateProjectConfig": {}
|
|
2029
|
+
}
|
|
2030
|
+
},
|
|
2029
2031
|
"env:get": {
|
|
2030
2032
|
"id": "env:get",
|
|
2031
2033
|
"description": "get environment variable",
|
|
@@ -2684,6 +2686,49 @@
|
|
|
2684
2686
|
"privateProjectConfig": {}
|
|
2685
2687
|
}
|
|
2686
2688
|
},
|
|
2689
|
+
"submit:internal": {
|
|
2690
|
+
"id": "submit:internal",
|
|
2691
|
+
"strict": true,
|
|
2692
|
+
"pluginName": "eas-cli",
|
|
2693
|
+
"pluginAlias": "eas-cli",
|
|
2694
|
+
"pluginType": "core",
|
|
2695
|
+
"hidden": true,
|
|
2696
|
+
"aliases": [],
|
|
2697
|
+
"flags": {
|
|
2698
|
+
"platform": {
|
|
2699
|
+
"name": "platform",
|
|
2700
|
+
"type": "option",
|
|
2701
|
+
"required": true,
|
|
2702
|
+
"helpValue": "(android|ios)",
|
|
2703
|
+
"multiple": false,
|
|
2704
|
+
"options": [
|
|
2705
|
+
"android",
|
|
2706
|
+
"ios"
|
|
2707
|
+
]
|
|
2708
|
+
},
|
|
2709
|
+
"profile": {
|
|
2710
|
+
"name": "profile",
|
|
2711
|
+
"type": "option",
|
|
2712
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2713
|
+
"multiple": false
|
|
2714
|
+
},
|
|
2715
|
+
"id": {
|
|
2716
|
+
"name": "id",
|
|
2717
|
+
"type": "option",
|
|
2718
|
+
"description": "ID of the build to submit",
|
|
2719
|
+
"required": true,
|
|
2720
|
+
"multiple": false
|
|
2721
|
+
}
|
|
2722
|
+
},
|
|
2723
|
+
"args": {},
|
|
2724
|
+
"contextDefinition": {
|
|
2725
|
+
"loggedIn": {},
|
|
2726
|
+
"privateProjectConfig": {},
|
|
2727
|
+
"projectDir": {},
|
|
2728
|
+
"analytics": {},
|
|
2729
|
+
"vcsClient": {}
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2687
2732
|
"update:configure": {
|
|
2688
2733
|
"id": "update:configure",
|
|
2689
2734
|
"description": "configure the project to support EAS Update",
|
|
@@ -3017,6 +3062,24 @@
|
|
|
3017
3062
|
"channel"
|
|
3018
3063
|
]
|
|
3019
3064
|
},
|
|
3065
|
+
"destination-channel": {
|
|
3066
|
+
"name": "destination-channel",
|
|
3067
|
+
"type": "option",
|
|
3068
|
+
"description": "Channel name to select a branch to republish to if republishing to a different branch",
|
|
3069
|
+
"multiple": false,
|
|
3070
|
+
"exclusive": [
|
|
3071
|
+
"destination-branch"
|
|
3072
|
+
]
|
|
3073
|
+
},
|
|
3074
|
+
"destination-branch": {
|
|
3075
|
+
"name": "destination-branch",
|
|
3076
|
+
"type": "option",
|
|
3077
|
+
"description": "Branch name to republish to if republishing to a different branch",
|
|
3078
|
+
"multiple": false,
|
|
3079
|
+
"exclusive": [
|
|
3080
|
+
"destination-channel"
|
|
3081
|
+
]
|
|
3082
|
+
},
|
|
3020
3083
|
"message": {
|
|
3021
3084
|
"name": "message",
|
|
3022
3085
|
"type": "option",
|
|
@@ -3548,19 +3611,6 @@
|
|
|
3548
3611
|
"helpValue": "PROFILE_NAME",
|
|
3549
3612
|
"multiple": false
|
|
3550
3613
|
},
|
|
3551
|
-
"environment": {
|
|
3552
|
-
"name": "environment",
|
|
3553
|
-
"type": "option",
|
|
3554
|
-
"description": "Environment variable's environment",
|
|
3555
|
-
"hidden": true,
|
|
3556
|
-
"helpValue": "(development|preview|production)",
|
|
3557
|
-
"multiple": false,
|
|
3558
|
-
"options": [
|
|
3559
|
-
"development",
|
|
3560
|
-
"preview",
|
|
3561
|
-
"production"
|
|
3562
|
-
]
|
|
3563
|
-
},
|
|
3564
3614
|
"json": {
|
|
3565
3615
|
"name": "json",
|
|
3566
3616
|
"type": "boolean",
|
|
@@ -3613,19 +3663,6 @@
|
|
|
3613
3663
|
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3614
3664
|
"helpValue": "PROFILE_NAME",
|
|
3615
3665
|
"multiple": false
|
|
3616
|
-
},
|
|
3617
|
-
"environment": {
|
|
3618
|
-
"name": "environment",
|
|
3619
|
-
"type": "option",
|
|
3620
|
-
"description": "Environment variable's environment",
|
|
3621
|
-
"hidden": true,
|
|
3622
|
-
"helpValue": "(development|preview|production)",
|
|
3623
|
-
"multiple": false,
|
|
3624
|
-
"options": [
|
|
3625
|
-
"development",
|
|
3626
|
-
"preview",
|
|
3627
|
-
"production"
|
|
3628
|
-
]
|
|
3629
3666
|
}
|
|
3630
3667
|
},
|
|
3631
3668
|
"args": {},
|
|
@@ -3665,19 +3702,6 @@
|
|
|
3665
3702
|
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3666
3703
|
"helpValue": "PROFILE_NAME",
|
|
3667
3704
|
"multiple": false
|
|
3668
|
-
},
|
|
3669
|
-
"environment": {
|
|
3670
|
-
"name": "environment",
|
|
3671
|
-
"type": "option",
|
|
3672
|
-
"description": "Environment variable's environment",
|
|
3673
|
-
"hidden": true,
|
|
3674
|
-
"helpValue": "(development|preview|production)",
|
|
3675
|
-
"multiple": false,
|
|
3676
|
-
"options": [
|
|
3677
|
-
"development",
|
|
3678
|
-
"preview",
|
|
3679
|
-
"production"
|
|
3680
|
-
]
|
|
3681
3705
|
}
|
|
3682
3706
|
},
|
|
3683
3707
|
"args": {},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "12.
|
|
4
|
+
"version": "12.5.1",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"@expo/config": "8.5.4",
|
|
14
14
|
"@expo/config-plugins": "7.8.4",
|
|
15
15
|
"@expo/config-types": "50.0.0",
|
|
16
|
-
"@expo/eas-build-job": "1.0.
|
|
17
|
-
"@expo/eas-json": "12.
|
|
16
|
+
"@expo/eas-build-job": "1.0.136",
|
|
17
|
+
"@expo/eas-json": "12.5.0",
|
|
18
18
|
"@expo/env": "^0.3.0",
|
|
19
19
|
"@expo/json-file": "8.2.37",
|
|
20
20
|
"@expo/logger": "1.0.117",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@expo/results": "1.0.0",
|
|
30
30
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
31
31
|
"@expo/spawn-async": "1.7.0",
|
|
32
|
-
"@expo/steps": "1.0.
|
|
32
|
+
"@expo/steps": "1.0.136",
|
|
33
33
|
"@expo/timeago.js": "1.0.0",
|
|
34
34
|
"@oclif/core": "^1.26.2",
|
|
35
35
|
"@oclif/plugin-autocomplete": "^2.3.10",
|
|
@@ -86,7 +86,8 @@
|
|
|
86
86
|
"turndown": "7.1.2",
|
|
87
87
|
"untildify": "4.0.0",
|
|
88
88
|
"uuid": "9.0.1",
|
|
89
|
-
"wrap-ansi": "7.0.0"
|
|
89
|
+
"wrap-ansi": "7.0.0",
|
|
90
|
+
"zod": "^3.23.8"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
92
93
|
"@graphql-codegen/cli": "5.0.0",
|
|
@@ -227,5 +228,5 @@
|
|
|
227
228
|
"node": "20.11.0",
|
|
228
229
|
"yarn": "1.22.21"
|
|
229
230
|
},
|
|
230
|
-
"gitHead": "
|
|
231
|
+
"gitHead": "01676a4f8821e46215f236f2a105d820e6df2872"
|
|
231
232
|
}
|