eas-cli 16.23.1 → 16.24.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 +87 -87
- package/build/commandUtils/workflow/fetchLogs.d.ts +5 -1
- package/build/commandUtils/workflow/fetchLogs.js +23 -3
- package/build/commandUtils/workflow/inputs.d.ts +40 -0
- package/build/commandUtils/workflow/inputs.js +165 -0
- package/build/commandUtils/workflow/stateMachine.js +1 -1
- package/build/commandUtils/workflow/types.d.ts +1 -0
- package/build/commandUtils/workflow/types.js +1 -1
- package/build/commandUtils/workflow/utils.d.ts +15 -4
- package/build/commandUtils/workflow/utils.js +148 -10
- package/build/commands/workflow/run.d.ts +0 -25
- package/build/commands/workflow/run.js +32 -230
- package/build/credentials/ios/types.d.ts +3 -0
- package/build/credentials/ios/types.js +35 -0
- package/build/graphql/generated.d.ts +80 -2
- package/build/graphql/types/Build.js +1 -0
- package/oclif.manifest.json +2 -2
- package/package.json +3 -3
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "16.
|
|
2
|
+
"version": "16.24.1",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -4198,7 +4198,7 @@
|
|
|
4198
4198
|
"wait": {
|
|
4199
4199
|
"name": "wait",
|
|
4200
4200
|
"type": "boolean",
|
|
4201
|
-
"summary": "Wait for workflow run to complete",
|
|
4201
|
+
"summary": "Wait for workflow run to complete. Defaults to false. Cannot be used with the --json flag.",
|
|
4202
4202
|
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
4203
4203
|
"allowNo": true
|
|
4204
4204
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "16.
|
|
4
|
+
"version": "16.24.1",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@expo/code-signing-certificates": "0.0.5",
|
|
13
13
|
"@expo/config": "10.0.6",
|
|
14
14
|
"@expo/config-plugins": "9.0.12",
|
|
15
|
-
"@expo/eas-build-job": "1.0.
|
|
15
|
+
"@expo/eas-build-job": "1.0.239",
|
|
16
16
|
"@expo/eas-json": "16.23.0",
|
|
17
17
|
"@expo/env": "^1.0.0",
|
|
18
18
|
"@expo/json-file": "8.3.3",
|
|
@@ -242,5 +242,5 @@
|
|
|
242
242
|
"node": "20.11.0",
|
|
243
243
|
"yarn": "1.22.21"
|
|
244
244
|
},
|
|
245
|
-
"gitHead": "
|
|
245
|
+
"gitHead": "4ae52d0e3d567a75a6ad89c46628f3986caad28b"
|
|
246
246
|
}
|