eas-cli 0.40.0 → 0.42.4

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.
Files changed (103) hide show
  1. package/README.md +466 -101
  2. package/bin/run +3 -4
  3. package/build/api.d.ts +1 -0
  4. package/build/api.js +13 -1
  5. package/build/build/build.js +3 -3
  6. package/build/build/configure.js +3 -3
  7. package/build/build/context.d.ts +2 -1
  8. package/build/build/createContext.d.ts +3 -2
  9. package/build/build/createContext.js +2 -2
  10. package/build/build/local.d.ts +9 -1
  11. package/build/build/local.js +35 -5
  12. package/build/build/runBuildAndSubmit.d.ts +15 -0
  13. package/build/build/runBuildAndSubmit.js +173 -0
  14. package/build/build/utils/devClient.js +3 -3
  15. package/build/commandUtils/EasCommand.d.ts +2 -1
  16. package/build/commandUtils/EasCommand.js +7 -4
  17. package/build/commands/account/login.d.ts +1 -0
  18. package/build/commands/account/login.js +1 -0
  19. package/build/commands/account/logout.d.ts +1 -0
  20. package/build/commands/account/logout.js +1 -0
  21. package/build/commands/account/view.d.ts +1 -0
  22. package/build/commands/account/view.js +1 -0
  23. package/build/commands/analytics.js +1 -1
  24. package/build/commands/branch/create.d.ts +1 -2
  25. package/build/commands/branch/create.js +3 -4
  26. package/build/commands/branch/delete.d.ts +1 -2
  27. package/build/commands/branch/delete.js +4 -5
  28. package/build/commands/branch/list.d.ts +1 -2
  29. package/build/commands/branch/list.js +4 -5
  30. package/build/commands/branch/rename.d.ts +3 -5
  31. package/build/commands/branch/rename.js +5 -6
  32. package/build/commands/branch/view.d.ts +1 -2
  33. package/build/commands/branch/view.js +3 -4
  34. package/build/commands/build/cancel.js +1 -1
  35. package/build/commands/build/configure.d.ts +1 -2
  36. package/build/commands/build/configure.js +3 -3
  37. package/build/commands/build/index.d.ts +11 -17
  38. package/build/commands/build/index.js +27 -177
  39. package/build/commands/build/inspect.d.ts +21 -0
  40. package/build/commands/build/inspect.js +129 -0
  41. package/build/commands/build/list.d.ts +13 -14
  42. package/build/commands/build/list.js +15 -15
  43. package/build/commands/build/view.d.ts +1 -1
  44. package/build/commands/build/view.js +3 -3
  45. package/build/commands/channel/create.d.ts +1 -2
  46. package/build/commands/channel/create.js +3 -4
  47. package/build/commands/channel/edit.d.ts +2 -4
  48. package/build/commands/channel/edit.js +4 -5
  49. package/build/commands/channel/list.d.ts +1 -2
  50. package/build/commands/channel/list.js +3 -4
  51. package/build/commands/channel/rollout.d.ts +4 -5
  52. package/build/commands/channel/rollout.js +6 -7
  53. package/build/commands/channel/view.d.ts +1 -2
  54. package/build/commands/channel/view.js +3 -4
  55. package/build/commands/config.d.ts +2 -3
  56. package/build/commands/config.js +4 -4
  57. package/build/commands/device/list.d.ts +1 -2
  58. package/build/commands/device/list.js +3 -3
  59. package/build/commands/device/view.js +1 -1
  60. package/build/commands/diagnostics.js +1 -0
  61. package/build/commands/secret/create.d.ts +4 -5
  62. package/build/commands/secret/create.js +6 -6
  63. package/build/commands/secret/delete.d.ts +1 -2
  64. package/build/commands/secret/delete.js +3 -3
  65. package/build/commands/submit.d.ts +9 -10
  66. package/build/commands/submit.js +13 -14
  67. package/build/commands/update/configure.d.ts +0 -3
  68. package/build/commands/update/configure.js +14 -15
  69. package/build/commands/update/delete.d.ts +1 -2
  70. package/build/commands/update/delete.js +3 -4
  71. package/build/commands/update/index.d.ts +9 -11
  72. package/build/commands/update/index.js +60 -29
  73. package/build/commands/update/view.d.ts +1 -2
  74. package/build/commands/update/view.js +3 -4
  75. package/build/commands/webhook/create.d.ts +3 -4
  76. package/build/commands/webhook/create.js +5 -5
  77. package/build/commands/webhook/delete.js +1 -1
  78. package/build/commands/webhook/list.d.ts +1 -2
  79. package/build/commands/webhook/list.js +3 -3
  80. package/build/commands/webhook/update.d.ts +4 -5
  81. package/build/commands/webhook/update.js +6 -6
  82. package/build/commands/webhook/view.js +1 -1
  83. package/build/graphql/generated.d.ts +31 -11
  84. package/build/graphql/generated.js +6 -1
  85. package/build/graphql/types/Submission.js +1 -0
  86. package/build/index.d.ts +1 -1
  87. package/build/index.js +2 -2
  88. package/build/project/expoSdk.d.ts +3 -0
  89. package/build/project/expoSdk.js +30 -0
  90. package/build/project/metroConfig.js +2 -2
  91. package/build/project/publish.js +1 -3
  92. package/build/prompts.d.ts +3 -3
  93. package/build/submit/ios/IosSubmitCommand.js +6 -1
  94. package/build/submit/utils/urls.js +1 -1
  95. package/build/update/utils.js +4 -4
  96. package/build/user/actions.js +2 -2
  97. package/build/utils/expoCli.d.ts +3 -1
  98. package/build/utils/expoCli.js +13 -11
  99. package/build/utils/profiles.d.ts +1 -1
  100. package/build/utils/profiles.js +80 -30
  101. package/build/vcs/clients/git.js +2 -2
  102. package/oclif.manifest.json +1 -1
  103. package/package.json +17 -12
package/README.md CHANGED
@@ -37,11 +37,21 @@ eas --help COMMAND
37
37
  * [`eas account:logout`](#eas-accountlogout)
38
38
  * [`eas account:view`](#eas-accountview)
39
39
  * [`eas analytics [STATUS]`](#eas-analytics-status)
40
+ * [`eas branch:create [NAME]`](#eas-branchcreate-name)
41
+ * [`eas branch:delete [NAME]`](#eas-branchdelete-name)
42
+ * [`eas branch:list`](#eas-branchlist)
43
+ * [`eas branch:rename`](#eas-branchrename)
44
+ * [`eas branch:view [NAME]`](#eas-branchview-name)
40
45
  * [`eas build`](#eas-build)
41
46
  * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
42
47
  * [`eas build:configure`](#eas-buildconfigure)
48
+ * [`eas build:inspect`](#eas-buildinspect)
43
49
  * [`eas build:list`](#eas-buildlist)
44
50
  * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
51
+ * [`eas channel:create [NAME]`](#eas-channelcreate-name)
52
+ * [`eas channel:edit [NAME]`](#eas-channeledit-name)
53
+ * [`eas channel:list`](#eas-channellist)
54
+ * [`eas channel:view [NAME]`](#eas-channelview-name)
45
55
  * [`eas config`](#eas-config)
46
56
  * [`eas credentials`](#eas-credentials)
47
57
  * [`eas device:create`](#eas-devicecreate)
@@ -55,6 +65,10 @@ eas --help COMMAND
55
65
  * [`eas secret:delete`](#eas-secretdelete)
56
66
  * [`eas secret:list`](#eas-secretlist)
57
67
  * [`eas submit`](#eas-submit)
68
+ * [`eas update`](#eas-update)
69
+ * [`eas update:configure`](#eas-updateconfigure)
70
+ * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
71
+ * [`eas update:view GROUPID`](#eas-updateview-groupid)
58
72
  * [`eas webhook:create`](#eas-webhookcreate)
59
73
  * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
60
74
  * [`eas webhook:list`](#eas-webhooklist)
@@ -69,11 +83,14 @@ log in with your Expo account
69
83
  USAGE
70
84
  $ eas account:login
71
85
 
86
+ DESCRIPTION
87
+ log in with your Expo account
88
+
72
89
  ALIASES
73
90
  $ eas login
74
91
  ```
75
92
 
76
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/account/login.ts)_
93
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/account/login.ts)_
77
94
 
78
95
  ## `eas account:logout`
79
96
 
@@ -83,11 +100,14 @@ log out
83
100
  USAGE
84
101
  $ eas account:logout
85
102
 
103
+ DESCRIPTION
104
+ log out
105
+
86
106
  ALIASES
87
107
  $ eas logout
88
108
  ```
89
109
 
90
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/account/logout.ts)_
110
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/account/logout.ts)_
91
111
 
92
112
  ## `eas account:view`
93
113
 
@@ -97,11 +117,14 @@ show the username you are logged in as
97
117
  USAGE
98
118
  $ eas account:view
99
119
 
120
+ DESCRIPTION
121
+ show the username you are logged in as
122
+
100
123
  ALIASES
101
124
  $ eas whoami
102
125
  ```
103
126
 
104
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/account/view.ts)_
127
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/account/view.ts)_
105
128
 
106
129
  ## `eas analytics [STATUS]`
107
130
 
@@ -110,9 +133,108 @@ view or change analytics settings
110
133
  ```
111
134
  USAGE
112
135
  $ eas analytics [STATUS]
136
+
137
+ DESCRIPTION
138
+ view or change analytics settings
139
+ ```
140
+
141
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/analytics.ts)_
142
+
143
+ ## `eas branch:create [NAME]`
144
+
145
+ Create a branch on the current project.
146
+
147
+ ```
148
+ USAGE
149
+ $ eas branch:create [NAME] [--json]
150
+
151
+ ARGUMENTS
152
+ NAME Name of the branch to create
153
+
154
+ FLAGS
155
+ --json return a json with the new branch ID and name.
156
+
157
+ DESCRIPTION
158
+ Create a branch on the current project.
159
+ ```
160
+
161
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/branch/create.ts)_
162
+
163
+ ## `eas branch:delete [NAME]`
164
+
165
+ Delete a branch on the current project
166
+
167
+ ```
168
+ USAGE
169
+ $ eas branch:delete [NAME] [--json]
170
+
171
+ ARGUMENTS
172
+ NAME Name of the branch to delete
173
+
174
+ FLAGS
175
+ --json return JSON with the edited branch's ID and name.
176
+
177
+ DESCRIPTION
178
+ Delete a branch on the current project
179
+ ```
180
+
181
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/branch/delete.ts)_
182
+
183
+ ## `eas branch:list`
184
+
185
+ List all branches on this project.
186
+
113
187
  ```
188
+ USAGE
189
+ $ eas branch:list [--json]
190
+
191
+ FLAGS
192
+ --json return output as JSON
193
+
194
+ DESCRIPTION
195
+ List all branches on this project.
196
+ ```
197
+
198
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/branch/list.ts)_
199
+
200
+ ## `eas branch:rename`
114
201
 
115
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/analytics.ts)_
202
+ Rename a branch.
203
+
204
+ ```
205
+ USAGE
206
+ $ eas branch:rename [--from <value>] [--to <value>] [--json]
207
+
208
+ FLAGS
209
+ --from=<value> current name of the branch.
210
+ --json return a json with the edited branch's ID and name.
211
+ --to=<value> new name of the branch.
212
+
213
+ DESCRIPTION
214
+ Rename a branch.
215
+ ```
216
+
217
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/branch/rename.ts)_
218
+
219
+ ## `eas branch:view [NAME]`
220
+
221
+ View a branch.
222
+
223
+ ```
224
+ USAGE
225
+ $ eas branch:view [NAME] [--json]
226
+
227
+ ARGUMENTS
228
+ NAME Name of the branch to view
229
+
230
+ FLAGS
231
+ --json return a json with the branch's ID name and recent update groups.
232
+
233
+ DESCRIPTION
234
+ View a branch.
235
+ ```
236
+
237
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/branch/view.ts)_
116
238
 
117
239
  ## `eas build`
118
240
 
@@ -120,33 +242,28 @@ Start a build
120
242
 
121
243
  ```
122
244
  USAGE
123
- $ eas build
245
+ $ eas build [-p android|ios|all] [--json] [--skip-project-configuration] [--profile <value>]
246
+ [--non-interactive] [--local] [--wait] [--clear-cache] [--auto-submit | --auto-submit-with-profile <value>]
124
247
 
125
- OPTIONS
248
+ FLAGS
126
249
  -p, --platform=(android|ios|all)
127
-
128
250
  --auto-submit Submit on build complete using the submit profile with the same name as the
129
251
  build profile
130
-
131
252
  --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
132
-
133
253
  --clear-cache Clear cache before the build
134
-
135
254
  --json Enable JSON output, non-JSON messages will be printed to stderr
136
-
137
255
  --local Run build locally [experimental]
138
-
139
256
  --non-interactive Run command in non-interactive mode
140
-
141
257
  --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
142
258
  in eas.json.
143
-
144
259
  --skip-project-configuration Skip project configuration
145
-
146
260
  --[no-]wait Wait for build(s) to complete
261
+
262
+ DESCRIPTION
263
+ Start a build
147
264
  ```
148
265
 
149
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/build/index.ts)_
266
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/build/index.ts)_
150
267
 
151
268
  ## `eas build:cancel [BUILD_ID]`
152
269
 
@@ -155,9 +272,12 @@ Cancel a build.
155
272
  ```
156
273
  USAGE
157
274
  $ eas build:cancel [BUILD_ID]
275
+
276
+ DESCRIPTION
277
+ Cancel a build.
158
278
  ```
159
279
 
160
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/build/cancel.ts)_
280
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/build/cancel.ts)_
161
281
 
162
282
  ## `eas build:configure`
163
283
 
@@ -165,46 +285,85 @@ Configure the project to support EAS Build.
165
285
 
166
286
  ```
167
287
  USAGE
168
- $ eas build:configure
288
+ $ eas build:configure [-p android|ios|all]
169
289
 
170
- OPTIONS
290
+ FLAGS
171
291
  -p, --platform=(android|ios|all) Platform to configure
292
+
293
+ DESCRIPTION
294
+ Configure the project to support EAS Build.
172
295
  ```
173
296
 
174
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/build/configure.ts)_
297
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/build/configure.ts)_
175
298
 
176
- ## `eas build:list`
299
+ ## `eas build:inspect`
177
300
 
178
- list all builds for your project
301
+ Inspect the state of the project at specific build stages. Useful for troubleshooting.
179
302
 
180
303
  ```
181
304
  USAGE
182
- $ eas build:list
305
+ $ eas build:inspect -p android|ios -s archive|pre-build|post-build --output <value> [--profile <value>] [--force]
306
+ [--verbose]
183
307
 
184
- OPTIONS
185
- --appBuildVersion=appBuildVersion
186
- --appIdentifier=appIdentifier
187
- --appVersion=appVersion
188
- --buildProfile=buildProfile
189
- --channel=channel
190
- --distribution=(store|internal|simulator)
191
- --gitCommitHash=gitCommitHash
308
+ FLAGS
309
+ -p, --platform=(android|ios)
310
+ (required)
192
311
 
193
- --json Enable JSON output, non-JSON messages will be printed
194
- to stderr
312
+ -s, --stage=(archive|pre-build|post-build)
313
+ (required) Stage of the build you want to inspect.
314
+ archive - builds the project archive that would be uploaded to EAS when building
315
+ pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
316
+ post-build - builds the native project and leaves the output directory for inspection
195
317
 
196
- --limit=limit
318
+ --force
319
+ Delete OUTPUT_DIRECTORY if it already exists.
197
320
 
198
- --platform=(all|android|ios)
321
+ --output=OUTPUT_DIRECTORY
322
+ (required) Output directory.
199
323
 
200
- --runtimeVersion=runtimeVersion
324
+ --profile=PROFILE_NAME
325
+ Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
201
326
 
202
- --sdkVersion=sdkVersion
327
+ --verbose
203
328
 
329
+ DESCRIPTION
330
+ Inspect the state of the project at specific build stages. Useful for troubleshooting.
331
+ ```
332
+
333
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/build/inspect.ts)_
334
+
335
+ ## `eas build:list`
336
+
337
+ list all builds for your project
338
+
339
+ ```
340
+ USAGE
341
+ $ eas build:list [--platform all|android|ios] [--json] [--status
342
+ new|in-queue|in-progress|errored|finished|canceled] [--distribution store|internal|simulator] [--channel <value>]
343
+ [--appVersion <value>] [--appBuildVersion <value>] [--sdkVersion <value>] [--runtimeVersion <value>]
344
+ [--appIdentifier <value>] [--buildProfile <value>] [--gitCommitHash <value>] [--limit <value>]
345
+
346
+ FLAGS
347
+ --appBuildVersion=<value>
348
+ --appIdentifier=<value>
349
+ --appVersion=<value>
350
+ --buildProfile=<value>
351
+ --channel=<value>
352
+ --distribution=(store|internal|simulator)
353
+ --gitCommitHash=<value>
354
+ --json Enable JSON output, non-JSON messages will be printed
355
+ to stderr
356
+ --limit=<value>
357
+ --platform=(all|android|ios)
358
+ --runtimeVersion=<value>
359
+ --sdkVersion=<value>
204
360
  --status=(new|in-queue|in-progress|errored|finished|canceled)
361
+
362
+ DESCRIPTION
363
+ list all builds for your project
205
364
  ```
206
365
 
207
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/build/list.ts)_
366
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/build/list.ts)_
208
367
 
209
368
  ## `eas build:view [BUILD_ID]`
210
369
 
@@ -212,13 +371,94 @@ view a build for your project
212
371
 
213
372
  ```
214
373
  USAGE
215
- $ eas build:view [BUILD_ID]
374
+ $ eas build:view [BUILD_ID] [--json]
216
375
 
217
- OPTIONS
376
+ FLAGS
218
377
  --json Enable JSON output, non-JSON messages will be printed to stderr
378
+
379
+ DESCRIPTION
380
+ view a build for your project
381
+ ```
382
+
383
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/build/view.ts)_
384
+
385
+ ## `eas channel:create [NAME]`
386
+
387
+ Create a channel on the current project.
388
+
389
+ ```
390
+ USAGE
391
+ $ eas channel:create [NAME] [--json]
392
+
393
+ ARGUMENTS
394
+ NAME Name of the channel to create
395
+
396
+ FLAGS
397
+ --json print output as a JSON object with the new channel ID, name and branch mapping.
398
+
399
+ DESCRIPTION
400
+ Create a channel on the current project.
401
+ ```
402
+
403
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/channel/create.ts)_
404
+
405
+ ## `eas channel:edit [NAME]`
406
+
407
+ Point a channel at a new branch.
408
+
409
+ ```
410
+ USAGE
411
+ $ eas channel:edit [NAME] [--branch <value>] [--json]
412
+
413
+ ARGUMENTS
414
+ NAME Name of the channel to edit
415
+
416
+ FLAGS
417
+ --branch=<value> Name of the branch to point to
418
+ --json print output as a JSON object with the channel ID, name and branch mapping.
419
+
420
+ DESCRIPTION
421
+ Point a channel at a new branch.
422
+ ```
423
+
424
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/channel/edit.ts)_
425
+
426
+ ## `eas channel:list`
427
+
428
+ List all channels on the current project.
429
+
430
+ ```
431
+ USAGE
432
+ $ eas channel:list [--json]
433
+
434
+ FLAGS
435
+ --json print output as a JSON object with the channel ID, name and branch mapping.
436
+
437
+ DESCRIPTION
438
+ List all channels on the current project.
439
+ ```
440
+
441
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/channel/list.ts)_
442
+
443
+ ## `eas channel:view [NAME]`
444
+
445
+ View a channel on the current project.
446
+
447
+ ```
448
+ USAGE
449
+ $ eas channel:view [NAME] [--json]
450
+
451
+ ARGUMENTS
452
+ NAME Name of the channel to view
453
+
454
+ FLAGS
455
+ --json print output as a JSON object with the channel ID, name and branch mapping.
456
+
457
+ DESCRIPTION
458
+ View a channel on the current project.
219
459
  ```
220
460
 
221
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/build/view.ts)_
461
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/channel/view.ts)_
222
462
 
223
463
  ## `eas config`
224
464
 
@@ -226,14 +466,17 @@ show the eas.json config
226
466
 
227
467
  ```
228
468
  USAGE
229
- $ eas config
469
+ $ eas config [-p android|ios] [--profile <value>]
230
470
 
231
- OPTIONS
471
+ FLAGS
232
472
  -p, --platform=(android|ios)
233
- --profile=profile
473
+ --profile=<value>
474
+
475
+ DESCRIPTION
476
+ show the eas.json config
234
477
  ```
235
478
 
236
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/config.ts)_
479
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/config.ts)_
237
480
 
238
481
  ## `eas credentials`
239
482
 
@@ -242,9 +485,12 @@ manage your credentials
242
485
  ```
243
486
  USAGE
244
487
  $ eas credentials
488
+
489
+ DESCRIPTION
490
+ manage your credentials
245
491
  ```
246
492
 
247
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/credentials.ts)_
493
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/credentials.ts)_
248
494
 
249
495
  ## `eas device:create`
250
496
 
@@ -253,9 +499,12 @@ register new Apple Devices to use for internal distribution
253
499
  ```
254
500
  USAGE
255
501
  $ eas device:create
502
+
503
+ DESCRIPTION
504
+ register new Apple Devices to use for internal distribution
256
505
  ```
257
506
 
258
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/device/create.ts)_
507
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/device/create.ts)_
259
508
 
260
509
  ## `eas device:list`
261
510
 
@@ -263,13 +512,16 @@ list all registered devices for your account
263
512
 
264
513
  ```
265
514
  USAGE
266
- $ eas device:list
515
+ $ eas device:list [--apple-team-id <value>]
267
516
 
268
- OPTIONS
269
- --apple-team-id=apple-team-id
517
+ FLAGS
518
+ --apple-team-id=<value>
519
+
520
+ DESCRIPTION
521
+ list all registered devices for your account
270
522
  ```
271
523
 
272
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/device/list.ts)_
524
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/device/list.ts)_
273
525
 
274
526
  ## `eas device:view [UDID]`
275
527
 
@@ -278,9 +530,12 @@ view a device for your project
278
530
  ```
279
531
  USAGE
280
532
  $ eas device:view [UDID]
533
+
534
+ DESCRIPTION
535
+ view a device for your project
281
536
  ```
282
537
 
283
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/device/view.ts)_
538
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/device/view.ts)_
284
539
 
285
540
  ## `eas diagnostics`
286
541
 
@@ -289,26 +544,32 @@ log environment info to the console
289
544
  ```
290
545
  USAGE
291
546
  $ eas diagnostics
547
+
548
+ DESCRIPTION
549
+ log environment info to the console
292
550
  ```
293
551
 
294
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/diagnostics.ts)_
552
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/diagnostics.ts)_
295
553
 
296
554
  ## `eas help [COMMAND]`
297
555
 
298
- display help for eas
556
+ Display help for eas.
299
557
 
300
558
  ```
301
559
  USAGE
302
- $ eas help [COMMAND]
560
+ $ eas help [COMMAND] [-n]
303
561
 
304
562
  ARGUMENTS
305
- COMMAND command to show help for
563
+ COMMAND Command to show help for.
564
+
565
+ FLAGS
566
+ -n, --nested-commands Include all nested commands in the output.
306
567
 
307
- OPTIONS
308
- --all see all commands in CLI
568
+ DESCRIPTION
569
+ Display help for eas.
309
570
  ```
310
571
 
311
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.5/src/commands/help.ts)_
572
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.10/src/commands/help.ts)_
312
573
 
313
574
  ## `eas project:info`
314
575
 
@@ -317,9 +578,12 @@ information about the current project
317
578
  ```
318
579
  USAGE
319
580
  $ eas project:info
581
+
582
+ DESCRIPTION
583
+ information about the current project
320
584
  ```
321
585
 
322
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/project/info.ts)_
586
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/project/info.ts)_
323
587
 
324
588
  ## `eas project:init`
325
589
 
@@ -329,11 +593,14 @@ create or link an EAS project
329
593
  USAGE
330
594
  $ eas project:init
331
595
 
596
+ DESCRIPTION
597
+ create or link an EAS project
598
+
332
599
  ALIASES
333
600
  $ eas init
334
601
  ```
335
602
 
336
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/project/init.ts)_
603
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/project/init.ts)_
337
604
 
338
605
  ## `eas secret:create`
339
606
 
@@ -341,16 +608,19 @@ Create an environment secret on the current project or owner account.
341
608
 
342
609
  ```
343
610
  USAGE
344
- $ eas secret:create
611
+ $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--force]
345
612
 
346
- OPTIONS
613
+ FLAGS
347
614
  --force Delete and recreate existing secrets
348
- --name=name Name of the secret
615
+ --name=<value> Name of the secret
349
616
  --scope=(account|project) [default: project] Scope for the secret
350
- --value=value Value of the secret
617
+ --value=<value> Value of the secret
618
+
619
+ DESCRIPTION
620
+ Create an environment secret on the current project or owner account.
351
621
  ```
352
622
 
353
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/secret/create.ts)_
623
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/secret/create.ts)_
354
624
 
355
625
  ## `eas secret:delete`
356
626
 
@@ -358,16 +628,18 @@ Delete an environment secret by ID.
358
628
 
359
629
  ```
360
630
  USAGE
361
- $ eas secret:delete
631
+ $ eas secret:delete [--id <value>]
362
632
 
363
- OPTIONS
364
- --id=id ID of the secret to delete
633
+ FLAGS
634
+ --id=<value> ID of the secret to delete
365
635
 
366
636
  DESCRIPTION
637
+ Delete an environment secret by ID.
638
+
367
639
  Unsure where to find the secret's ID? Run eas secret:list
368
640
  ```
369
641
 
370
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/secret/delete.ts)_
642
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/secret/delete.ts)_
371
643
 
372
644
  ## `eas secret:list`
373
645
 
@@ -376,9 +648,12 @@ Lists environment secrets available for your current app
376
648
  ```
377
649
  USAGE
378
650
  $ eas secret:list
651
+
652
+ DESCRIPTION
653
+ Lists environment secrets available for your current app
379
654
  ```
380
655
 
381
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/secret/list.ts)_
656
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/secret/list.ts)_
382
657
 
383
658
  ## `eas submit`
384
659
 
@@ -386,32 +661,111 @@ Submit build archive to App Store Connect
386
661
 
387
662
  ```
388
663
  USAGE
389
- $ eas submit
664
+ $ eas submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
665
+ <value>] [--verbose] [--wait] [--non-interactive]
390
666
 
391
- OPTIONS
667
+ FLAGS
392
668
  -p, --platform=(android|ios|all)
393
- --id=id ID of the build to submit
669
+ --id=<value> ID of the build to submit
394
670
  --latest Submit the latest build for specified platform
395
671
  --non-interactive Run command in non-interactive mode
396
- --path=path Path to the .apk/.aab/.ipa file
397
-
398
- --profile=profile Name of the submit profile from eas.json. Defaults to "production" if defined in
672
+ --path=<value> Path to the .apk/.aab/.ipa file
673
+ --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
399
674
  eas.json.
400
-
401
- --url=url App archive url
402
-
675
+ --url=<value> App archive url
403
676
  --verbose Always print logs from Submission Service
404
-
405
677
  --[no-]wait Wait for submission to complete
406
678
 
407
679
  DESCRIPTION
680
+ Submit build archive to App Store Connect
681
+
408
682
  See how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/
409
683
 
410
684
  ALIASES
411
685
  $ eas build:submit
412
686
  ```
413
687
 
414
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/submit.ts)_
688
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/submit.ts)_
689
+
690
+ ## `eas update`
691
+
692
+ Publish an update group.
693
+
694
+ ```
695
+ USAGE
696
+ $ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
697
+ [--group <value> | | ] [-p android|ios|all] [--json] [--auto]
698
+
699
+ FLAGS
700
+ -p, --platform=(android|ios|all) [default: all]
701
+ --auto Use the current git branch and commit message for the EAS branch and update message
702
+ --branch=<value> Branch to publish the update group on
703
+ --group=<value> Update group to republish
704
+ --input-dir=<value> [default: dist] Location of the bundle
705
+ --json Enable JSON output, non-JSON messages will be printed to stderr
706
+ --message=<value> A short message describing the update
707
+ --republish Republish an update group
708
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
709
+
710
+ DESCRIPTION
711
+ Publish an update group.
712
+ ```
713
+
714
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/update/index.ts)_
715
+
716
+ ## `eas update:configure`
717
+
718
+ Configure the project to support EAS Update.
719
+
720
+ ```
721
+ USAGE
722
+ $ eas update:configure
723
+
724
+ DESCRIPTION
725
+ Configure the project to support EAS Update.
726
+ ```
727
+
728
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/update/configure.ts)_
729
+
730
+ ## `eas update:delete GROUPID`
731
+
732
+ Delete all the updates in an update Group.
733
+
734
+ ```
735
+ USAGE
736
+ $ eas update:delete [GROUPID] [--json]
737
+
738
+ ARGUMENTS
739
+ GROUPID The ID of an update group to delete.
740
+
741
+ FLAGS
742
+ --json Return a json with the group ID of the deleted updates.
743
+
744
+ DESCRIPTION
745
+ Delete all the updates in an update Group.
746
+ ```
747
+
748
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/update/delete.ts)_
749
+
750
+ ## `eas update:view GROUPID`
751
+
752
+ Update group details.
753
+
754
+ ```
755
+ USAGE
756
+ $ eas update:view [GROUPID] [--json]
757
+
758
+ ARGUMENTS
759
+ GROUPID The ID of an update group.
760
+
761
+ FLAGS
762
+ --json Return a json with the updates belonging to the group.
763
+
764
+ DESCRIPTION
765
+ Update group details.
766
+ ```
767
+
768
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/update/view.ts)_
415
769
 
416
770
  ## `eas webhook:create`
417
771
 
@@ -419,18 +773,19 @@ Create a webhook on the current project.
419
773
 
420
774
  ```
421
775
  USAGE
422
- $ eas webhook:create
776
+ $ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
423
777
 
424
- OPTIONS
778
+ FLAGS
425
779
  --event=(BUILD|SUBMIT) Event type that triggers the webhook
426
-
427
- --secret=secret Secret used to create a hash signature of the request payload, provided in the
780
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
428
781
  'Expo-Signature' header.
782
+ --url=<value> Webhook URL
429
783
 
430
- --url=url Webhook URL
784
+ DESCRIPTION
785
+ Create a webhook on the current project.
431
786
  ```
432
787
 
433
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/webhook/create.ts)_
788
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/webhook/create.ts)_
434
789
 
435
790
  ## `eas webhook:delete [ID]`
436
791
 
@@ -442,9 +797,12 @@ USAGE
442
797
 
443
798
  ARGUMENTS
444
799
  ID ID of the webhook to delete
800
+
801
+ DESCRIPTION
802
+ Delete a webhook on the current project.
445
803
  ```
446
804
 
447
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/webhook/delete.ts)_
805
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/webhook/delete.ts)_
448
806
 
449
807
  ## `eas webhook:list`
450
808
 
@@ -452,13 +810,16 @@ List webhooks on the current project.
452
810
 
453
811
  ```
454
812
  USAGE
455
- $ eas webhook:list
813
+ $ eas webhook:list [--event BUILD|SUBMIT]
456
814
 
457
- OPTIONS
815
+ FLAGS
458
816
  --event=(BUILD|SUBMIT) Event type that triggers the webhook
817
+
818
+ DESCRIPTION
819
+ List webhooks on the current project.
459
820
  ```
460
821
 
461
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/webhook/list.ts)_
822
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/webhook/list.ts)_
462
823
 
463
824
  ## `eas webhook:update`
464
825
 
@@ -466,19 +827,20 @@ Create a webhook on the current project.
466
827
 
467
828
  ```
468
829
  USAGE
469
- $ eas webhook:update
830
+ $ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
470
831
 
471
- OPTIONS
832
+ FLAGS
472
833
  --event=(BUILD|SUBMIT) Event type that triggers the webhook
473
- --id=id (required) Webhook ID
474
-
475
- --secret=secret Secret used to create a hash signature of the request payload, provided in the
834
+ --id=<value> (required) Webhook ID
835
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
476
836
  'Expo-Signature' header.
837
+ --url=<value> Webhook URL
477
838
 
478
- --url=url Webhook URL
839
+ DESCRIPTION
840
+ Create a webhook on the current project.
479
841
  ```
480
842
 
481
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/webhook/update.ts)_
843
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/webhook/update.ts)_
482
844
 
483
845
  ## `eas webhook:view ID`
484
846
 
@@ -486,11 +848,14 @@ View a webhook on the current project.
486
848
 
487
849
  ```
488
850
  USAGE
489
- $ eas webhook:view ID
851
+ $ eas webhook:view [ID]
490
852
 
491
853
  ARGUMENTS
492
854
  ID ID of the webhook to view
855
+
856
+ DESCRIPTION
857
+ View a webhook on the current project.
493
858
  ```
494
859
 
495
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.40.0/packages/eas-cli/src/commands/webhook/view.ts)_
860
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.42.4/packages/eas-cli/src/commands/webhook/view.ts)_
496
861
  <!-- commandsstop -->