eas-cli 2.7.0 → 2.8.0

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 (60) hide show
  1. package/README.md +1135 -7
  2. package/build/branch/queries.d.ts +1 -0
  3. package/build/branch/queries.js +2 -2
  4. package/build/build/build.js +2 -2
  5. package/build/build/createContext.js +1 -0
  6. package/build/build/graphql.js +6 -0
  7. package/build/build/local.js +1 -1
  8. package/build/build/queries.d.ts +4 -2
  9. package/build/build/queries.js +32 -7
  10. package/build/commands/build/run.js +24 -11
  11. package/build/commands/credentials.d.ts +1 -0
  12. package/build/commands/credentials.js +3 -2
  13. package/build/commands/submit.js +1 -1
  14. package/build/commands/update/index.js +8 -6
  15. package/build/credentials/manager/HelperActions.d.ts +2 -0
  16. package/build/credentials/manager/ManageAndroid.js +8 -1
  17. package/build/credentials/manager/ManageIos.js +8 -1
  18. package/build/credentials/manager/SelectPlatform.d.ts +3 -1
  19. package/build/credentials/manager/SelectPlatform.js +2 -1
  20. package/build/devices/utils/formatDevice.js +1 -2
  21. package/build/graphql/generated.d.ts +12 -0
  22. package/build/graphql/generated.js +9 -2
  23. package/build/graphql/mutations/SubmissionMutation.js +14 -2
  24. package/build/graphql/mutations/UploadSessionMutation.d.ts +4 -3
  25. package/build/prompts.js +3 -1
  26. package/build/run/android/aapt.d.ts +5 -0
  27. package/build/run/android/aapt.js +51 -0
  28. package/build/run/android/adb.d.ts +23 -0
  29. package/build/run/android/adb.js +120 -0
  30. package/build/run/android/emulator.d.ts +7 -0
  31. package/build/run/android/emulator.js +109 -0
  32. package/build/run/android/run.d.ts +1 -1
  33. package/build/run/android/run.js +10 -3
  34. package/build/run/android/sdk.d.ts +3 -0
  35. package/build/run/android/sdk.js +29 -0
  36. package/build/run/android/systemRequirements.d.ts +1 -0
  37. package/build/run/android/systemRequirements.js +24 -0
  38. package/build/submit/ArchiveSource.d.ts +20 -10
  39. package/build/submit/ArchiveSource.js +59 -60
  40. package/build/submit/BaseSubmitter.d.ts +4 -1
  41. package/build/submit/BaseSubmitter.js +20 -0
  42. package/build/submit/android/AndroidSubmitCommand.js +1 -2
  43. package/build/submit/android/AndroidSubmitter.d.ts +3 -3
  44. package/build/submit/android/AndroidSubmitter.js +12 -7
  45. package/build/submit/commons.d.ts +1 -1
  46. package/build/submit/commons.js +1 -16
  47. package/build/submit/ios/IosSubmitCommand.js +1 -2
  48. package/build/submit/ios/IosSubmitter.d.ts +3 -3
  49. package/build/submit/ios/IosSubmitter.js +11 -6
  50. package/build/submit/utils/files.js +2 -2
  51. package/build/submit/utils/summary.d.ts +2 -2
  52. package/build/submit/utils/summary.js +7 -8
  53. package/build/uploads.d.ts +4 -10
  54. package/build/uploads.js +16 -36
  55. package/build/utils/download.d.ts +3 -2
  56. package/build/utils/download.js +37 -30
  57. package/build/utils/progress.d.ts +1 -1
  58. package/build/utils/progress.js +6 -4
  59. package/oclif.manifest.json +1 -1
  60. package/package.json +4 -4
package/README.md CHANGED
@@ -55,8 +55,127 @@ eas --help COMMAND
55
55
  # Commands
56
56
 
57
57
  <!-- commands -->
58
+ * [`eas account:login`](#eas-accountlogin)
59
+ * [`eas account:logout`](#eas-accountlogout)
60
+ * [`eas account:view`](#eas-accountview)
61
+ * [`eas analytics [STATUS]`](#eas-analytics-status)
58
62
  * [`eas autocomplete [SHELL]`](#eas-autocomplete-shell)
63
+ * [`eas branch:create [NAME]`](#eas-branchcreate-name)
64
+ * [`eas branch:delete [NAME]`](#eas-branchdelete-name)
65
+ * [`eas branch:list`](#eas-branchlist)
66
+ * [`eas branch:rename`](#eas-branchrename)
67
+ * [`eas branch:view [NAME]`](#eas-branchview-name)
68
+ * [`eas build`](#eas-build)
69
+ * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
70
+ * [`eas build:configure`](#eas-buildconfigure)
71
+ * [`eas build:inspect`](#eas-buildinspect)
72
+ * [`eas build:list`](#eas-buildlist)
73
+ * [`eas build:submit`](#eas-buildsubmit)
74
+ * [`eas build:version:set`](#eas-buildversionset)
75
+ * [`eas build:version:sync`](#eas-buildversionsync)
76
+ * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
77
+ * [`eas channel:create [NAME]`](#eas-channelcreate-name)
78
+ * [`eas channel:edit [NAME]`](#eas-channeledit-name)
79
+ * [`eas channel:list`](#eas-channellist)
80
+ * [`eas channel:view [NAME]`](#eas-channelview-name)
81
+ * [`eas config`](#eas-config)
82
+ * [`eas credentials`](#eas-credentials)
83
+ * [`eas device:create`](#eas-devicecreate)
84
+ * [`eas device:delete`](#eas-devicedelete)
85
+ * [`eas device:list`](#eas-devicelist)
86
+ * [`eas device:view [UDID]`](#eas-deviceview-udid)
87
+ * [`eas diagnostics`](#eas-diagnostics)
59
88
  * [`eas help [COMMAND]`](#eas-help-command)
89
+ * [`eas init`](#eas-init)
90
+ * [`eas login`](#eas-login)
91
+ * [`eas logout`](#eas-logout)
92
+ * [`eas metadata:lint`](#eas-metadatalint)
93
+ * [`eas metadata:pull`](#eas-metadatapull)
94
+ * [`eas metadata:push`](#eas-metadatapush)
95
+ * [`eas open`](#eas-open)
96
+ * [`eas project:info`](#eas-projectinfo)
97
+ * [`eas project:init`](#eas-projectinit)
98
+ * [`eas secret:create`](#eas-secretcreate)
99
+ * [`eas secret:delete`](#eas-secretdelete)
100
+ * [`eas secret:list`](#eas-secretlist)
101
+ * [`eas secret:push`](#eas-secretpush)
102
+ * [`eas submit`](#eas-submit)
103
+ * [`eas update`](#eas-update)
104
+ * [`eas update:configure`](#eas-updateconfigure)
105
+ * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
106
+ * [`eas update:list`](#eas-updatelist)
107
+ * [`eas update:view GROUPID`](#eas-updateview-groupid)
108
+ * [`eas webhook:create`](#eas-webhookcreate)
109
+ * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
110
+ * [`eas webhook:list`](#eas-webhooklist)
111
+ * [`eas webhook:update`](#eas-webhookupdate)
112
+ * [`eas webhook:view ID`](#eas-webhookview-id)
113
+ * [`eas whoami`](#eas-whoami)
114
+
115
+ ## `eas account:login`
116
+
117
+ log in with your Expo account
118
+
119
+ ```
120
+ USAGE
121
+ $ eas account:login
122
+
123
+ DESCRIPTION
124
+ log in with your Expo account
125
+
126
+ ALIASES
127
+ $ eas login
128
+ ```
129
+
130
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/account/login.ts)_
131
+
132
+ ## `eas account:logout`
133
+
134
+ log out
135
+
136
+ ```
137
+ USAGE
138
+ $ eas account:logout
139
+
140
+ DESCRIPTION
141
+ log out
142
+
143
+ ALIASES
144
+ $ eas logout
145
+ ```
146
+
147
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/account/logout.ts)_
148
+
149
+ ## `eas account:view`
150
+
151
+ show the username you are logged in as
152
+
153
+ ```
154
+ USAGE
155
+ $ eas account:view
156
+
157
+ DESCRIPTION
158
+ show the username you are logged in as
159
+
160
+ ALIASES
161
+ $ eas whoami
162
+ ```
163
+
164
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/account/view.ts)_
165
+
166
+ ## `eas analytics [STATUS]`
167
+
168
+ display or change analytics settings
169
+
170
+ ```
171
+ USAGE
172
+ $ eas analytics [STATUS]
173
+
174
+ DESCRIPTION
175
+ display or change analytics settings
176
+ ```
177
+
178
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/analytics.ts)_
60
179
 
61
180
  ## `eas autocomplete [SHELL]`
62
181
 
@@ -87,23 +206,1032 @@ EXAMPLES
87
206
 
88
207
  _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.4/src/commands/autocomplete/index.ts)_
89
208
 
90
- ## `eas help [COMMAND]`
209
+ ## `eas branch:create [NAME]`
91
210
 
92
- display help for eas-cli
211
+ create a branch
93
212
 
94
213
  ```
95
214
  USAGE
96
- $ eas help [COMMAND] [-n]
215
+ $ eas branch:create [NAME] [--json --non-interactive]
97
216
 
98
217
  ARGUMENTS
99
- COMMAND Command to show help for.
218
+ NAME Name of the branch to create
100
219
 
101
220
  FLAGS
102
- -n, --nested-commands Include all nested commands in the output.
221
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
222
+ --non-interactive Run the command in non-interactive mode.
103
223
 
104
224
  DESCRIPTION
105
- display help for eas-cli
225
+ create a branch
106
226
  ```
107
227
 
108
- _See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.1.16/src/commands/help.ts)_
228
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/branch/create.ts)_
229
+
230
+ ## `eas branch:delete [NAME]`
231
+
232
+ delete a branch
233
+
234
+ ```
235
+ USAGE
236
+ $ eas branch:delete [NAME] [--json --non-interactive]
237
+
238
+ ARGUMENTS
239
+ NAME Name of the branch to delete
240
+
241
+ FLAGS
242
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
243
+ --non-interactive Run the command in non-interactive mode.
244
+
245
+ DESCRIPTION
246
+ delete a branch
247
+ ```
248
+
249
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/branch/delete.ts)_
250
+
251
+ ## `eas branch:list`
252
+
253
+ list all branches
254
+
255
+ ```
256
+ USAGE
257
+ $ eas branch:list [--offset <value>] [--limit <value>] [--json --non-interactive]
258
+
259
+ FLAGS
260
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
261
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
262
+ --non-interactive Run the command in non-interactive mode.
263
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
264
+
265
+ DESCRIPTION
266
+ list all branches
267
+ ```
268
+
269
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/branch/list.ts)_
270
+
271
+ ## `eas branch:rename`
272
+
273
+ rename a branch
274
+
275
+ ```
276
+ USAGE
277
+ $ eas branch:rename [--from <value>] [--to <value>] [--json --non-interactive]
278
+
279
+ FLAGS
280
+ --from=<value> current name of the branch.
281
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
282
+ --non-interactive Run the command in non-interactive mode.
283
+ --to=<value> new name of the branch.
284
+
285
+ DESCRIPTION
286
+ rename a branch
287
+ ```
288
+
289
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/branch/rename.ts)_
290
+
291
+ ## `eas branch:view [NAME]`
292
+
293
+ view a branch
294
+
295
+ ```
296
+ USAGE
297
+ $ eas branch:view [NAME] [--offset <value>] [--limit <value>] [--json --non-interactive]
298
+
299
+ ARGUMENTS
300
+ NAME Name of the branch to view
301
+
302
+ FLAGS
303
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
304
+ --limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
305
+ --non-interactive Run the command in non-interactive mode.
306
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
307
+
308
+ DESCRIPTION
309
+ view a branch
310
+ ```
311
+
312
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/branch/view.ts)_
313
+
314
+ ## `eas build`
315
+
316
+ start a build
317
+
318
+ ```
319
+ USAGE
320
+ $ eas build [-p android|ios|all] [-e <value>] [--local] [--output <value>] [--wait] [--clear-cache]
321
+ [--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--json --non-interactive]
322
+
323
+ FLAGS
324
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
325
+ in eas.json.
326
+ -m, --message=<value> A short message describing the build
327
+ -p, --platform=(android|ios|all)
328
+ --auto-submit Submit on build complete using the submit profile with the same name as the
329
+ build profile
330
+ --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
331
+ --clear-cache Clear cache before the build
332
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
333
+ --local Run build locally [experimental]
334
+ --non-interactive Run the command in non-interactive mode.
335
+ --output=<value> Output path for local build
336
+ --[no-]wait Wait for build(s) to complete
337
+
338
+ DESCRIPTION
339
+ start a build
340
+ ```
341
+
342
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/index.ts)_
343
+
344
+ ## `eas build:cancel [BUILD_ID]`
345
+
346
+ cancel a build
347
+
348
+ ```
349
+ USAGE
350
+ $ eas build:cancel [BUILD_ID] [--non-interactive]
351
+
352
+ FLAGS
353
+ --non-interactive Run the command in non-interactive mode.
354
+
355
+ DESCRIPTION
356
+ cancel a build
357
+ ```
358
+
359
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/cancel.ts)_
360
+
361
+ ## `eas build:configure`
362
+
363
+ configure the project to support EAS Build
364
+
365
+ ```
366
+ USAGE
367
+ $ eas build:configure [-p android|ios|all]
368
+
369
+ FLAGS
370
+ -p, --platform=(android|ios|all) Platform to configure
371
+
372
+ DESCRIPTION
373
+ configure the project to support EAS Build
374
+ ```
375
+
376
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/configure.ts)_
377
+
378
+ ## `eas build:inspect`
379
+
380
+ inspect the state of the project at specific build stages, useful for troubleshooting
381
+
382
+ ```
383
+ USAGE
384
+ $ eas build:inspect -p android|ios -s archive|pre-build|post-build -o <value> [-e <value>] [--force] [-v]
385
+
386
+ FLAGS
387
+ -e, --profile=PROFILE_NAME
388
+ Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
389
+
390
+ -o, --output=OUTPUT_DIRECTORY
391
+ (required) Output directory.
392
+
393
+ -p, --platform=(android|ios)
394
+ (required)
395
+
396
+ -s, --stage=(archive|pre-build|post-build)
397
+ (required) Stage of the build you want to inspect.
398
+ archive - builds the project archive that would be uploaded to EAS when building
399
+ pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
400
+ post-build - builds the native project and leaves the output directory for inspection
401
+
402
+ -v, --verbose
403
+
404
+ --force
405
+ Delete OUTPUT_DIRECTORY if it already exists.
406
+
407
+ DESCRIPTION
408
+ inspect the state of the project at specific build stages, useful for troubleshooting
409
+ ```
410
+
411
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/inspect.ts)_
412
+
413
+ ## `eas build:list`
414
+
415
+ list all builds for your project
416
+
417
+ ```
418
+ USAGE
419
+ $ eas build:list [--platform all|android|ios] [--status new|in-queue|in-progress|errored|finished|canceled]
420
+ [--distribution store|internal|simulator] [--channel <value>] [--appVersion <value>] [--appBuildVersion <value>]
421
+ [--sdkVersion <value>] [--runtimeVersion <value>] [--appIdentifier <value>] [--buildProfile <value>]
422
+ [--gitCommitHash <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
423
+
424
+ FLAGS
425
+ --appBuildVersion=<value>
426
+ --appIdentifier=<value>
427
+ --appVersion=<value>
428
+ --buildProfile=<value>
429
+ --channel=<value>
430
+ --distribution=(store|internal|simulator)
431
+ --gitCommitHash=<value>
432
+ --json Enable JSON output, non-JSON messages will be printed
433
+ to stderr.
434
+ --limit=<value> The number of items to fetch each query. Defaults to 10
435
+ and is capped at 50.
436
+ --non-interactive Run the command in non-interactive mode.
437
+ --offset=<value> Start queries from specified index. Use for paginating
438
+ results. Defaults to 0.
439
+ --platform=(all|android|ios)
440
+ --runtimeVersion=<value>
441
+ --sdkVersion=<value>
442
+ --status=(new|in-queue|in-progress|errored|finished|canceled)
443
+
444
+ DESCRIPTION
445
+ list all builds for your project
446
+ ```
447
+
448
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/list.ts)_
449
+
450
+ ## `eas build:submit`
451
+
452
+ submit app binary to App Store and/or Play Store
453
+
454
+ ```
455
+ USAGE
456
+ $ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
457
+ [--verbose] [--wait] [--non-interactive]
458
+
459
+ FLAGS
460
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
461
+ eas.json.
462
+ -p, --platform=(android|ios|all)
463
+ --id=<value> ID of the build to submit
464
+ --latest Submit the latest build for specified platform
465
+ --non-interactive Run command in non-interactive mode
466
+ --path=<value> Path to the .apk/.aab/.ipa file
467
+ --url=<value> App archive url
468
+ --verbose Always print logs from Submission Service
469
+ --[no-]wait Wait for submission to complete
470
+
471
+ DESCRIPTION
472
+ submit app binary to App Store and/or Play Store
473
+
474
+ ALIASES
475
+ $ eas build:submit
476
+ ```
477
+
478
+ ## `eas build:version:set`
479
+
480
+ Update version of an app.
481
+
482
+ ```
483
+ USAGE
484
+ $ eas build:version:set [-p android|ios] [-e <value>]
485
+
486
+ FLAGS
487
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
488
+ eas.json.
489
+ -p, --platform=(android|ios)
490
+
491
+ DESCRIPTION
492
+ Update version of an app.
493
+ ```
494
+
495
+ _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/version/set.ts)_
496
+
497
+ ## `eas build:version:sync`
498
+
499
+ Update a version in native code with a value stored on EAS servers
500
+
501
+ ```
502
+ USAGE
503
+ $ eas build:version:sync [-p android|ios|all] [-e <value>]
504
+
505
+ FLAGS
506
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
507
+ eas.json.
508
+ -p, --platform=(android|ios|all)
509
+
510
+ DESCRIPTION
511
+ Update a version in native code with a value stored on EAS servers
512
+ ```
513
+
514
+ _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/version/sync.ts)_
515
+
516
+ ## `eas build:view [BUILD_ID]`
517
+
518
+ view a build for your project
519
+
520
+ ```
521
+ USAGE
522
+ $ eas build:view [BUILD_ID] [--json]
523
+
524
+ FLAGS
525
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
526
+
527
+ DESCRIPTION
528
+ view a build for your project
529
+ ```
530
+
531
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/build/view.ts)_
532
+
533
+ ## `eas channel:create [NAME]`
534
+
535
+ create a channel
536
+
537
+ ```
538
+ USAGE
539
+ $ eas channel:create [NAME] [--json --non-interactive]
540
+
541
+ ARGUMENTS
542
+ NAME Name of the channel to create
543
+
544
+ FLAGS
545
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
546
+ --non-interactive Run the command in non-interactive mode.
547
+
548
+ DESCRIPTION
549
+ create a channel
550
+ ```
551
+
552
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/channel/create.ts)_
553
+
554
+ ## `eas channel:edit [NAME]`
555
+
556
+ point a channel at a new branch
557
+
558
+ ```
559
+ USAGE
560
+ $ eas channel:edit [NAME] [--branch <value>] [--json --non-interactive]
561
+
562
+ ARGUMENTS
563
+ NAME Name of the channel to edit
564
+
565
+ FLAGS
566
+ --branch=<value> Name of the branch to point to
567
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
568
+ --non-interactive Run the command in non-interactive mode.
569
+
570
+ DESCRIPTION
571
+ point a channel at a new branch
572
+ ```
573
+
574
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/channel/edit.ts)_
575
+
576
+ ## `eas channel:list`
577
+
578
+ list all channels
579
+
580
+ ```
581
+ USAGE
582
+ $ eas channel:list [--offset <value>] [--limit <value>] [--json --non-interactive]
583
+
584
+ FLAGS
585
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
586
+ --limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 25.
587
+ --non-interactive Run the command in non-interactive mode.
588
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
589
+
590
+ DESCRIPTION
591
+ list all channels
592
+ ```
593
+
594
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/channel/list.ts)_
595
+
596
+ ## `eas channel:view [NAME]`
597
+
598
+ view a channel
599
+
600
+ ```
601
+ USAGE
602
+ $ eas channel:view [NAME] [--json --non-interactive] [--offset <value>] [--limit <value>]
603
+
604
+ ARGUMENTS
605
+ NAME Name of the channel to view
606
+
607
+ FLAGS
608
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
609
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
610
+ --non-interactive Run the command in non-interactive mode.
611
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
612
+
613
+ DESCRIPTION
614
+ view a channel
615
+ ```
616
+
617
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/channel/view.ts)_
618
+
619
+ ## `eas config`
620
+
621
+ display project configuration (app.json + eas.json)
622
+
623
+ ```
624
+ USAGE
625
+ $ eas config [-p android|ios] [-e <value>]
626
+
627
+ FLAGS
628
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
629
+ eas.json.
630
+ -p, --platform=(android|ios)
631
+
632
+ DESCRIPTION
633
+ display project configuration (app.json + eas.json)
634
+ ```
635
+
636
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/config.ts)_
637
+
638
+ ## `eas credentials`
639
+
640
+ manage credentials
641
+
642
+ ```
643
+ USAGE
644
+ $ eas credentials [-p android|ios]
645
+
646
+ FLAGS
647
+ -p, --platform=(android|ios)
648
+
649
+ DESCRIPTION
650
+ manage credentials
651
+ ```
652
+
653
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/credentials.ts)_
654
+
655
+ ## `eas device:create`
656
+
657
+ register new Apple Devices to use for internal distribution
658
+
659
+ ```
660
+ USAGE
661
+ $ eas device:create
662
+
663
+ DESCRIPTION
664
+ register new Apple Devices to use for internal distribution
665
+ ```
666
+
667
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/device/create.ts)_
668
+
669
+ ## `eas device:delete`
670
+
671
+ remove a registered device from your account
672
+
673
+ ```
674
+ USAGE
675
+ $ eas device:delete [--apple-team-id <value>] [--udid <value>] [--json --non-interactive]
676
+
677
+ FLAGS
678
+ --apple-team-id=<value> The Apple team ID on which to find the device
679
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
680
+ --non-interactive Run the command in non-interactive mode.
681
+ --udid=<value> The Apple device ID to disable
682
+
683
+ DESCRIPTION
684
+ remove a registered device from your account
685
+ ```
686
+
687
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/device/delete.ts)_
688
+
689
+ ## `eas device:list`
690
+
691
+ list all registered devices for your account
692
+
693
+ ```
694
+ USAGE
695
+ $ eas device:list [--apple-team-id <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
696
+
697
+ FLAGS
698
+ --apple-team-id=<value>
699
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
700
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
701
+ --non-interactive Run the command in non-interactive mode.
702
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
703
+
704
+ DESCRIPTION
705
+ list all registered devices for your account
706
+ ```
707
+
708
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/device/list.ts)_
709
+
710
+ ## `eas device:view [UDID]`
711
+
712
+ view a device for your project
713
+
714
+ ```
715
+ USAGE
716
+ $ eas device:view [UDID]
717
+
718
+ DESCRIPTION
719
+ view a device for your project
720
+ ```
721
+
722
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/device/view.ts)_
723
+
724
+ ## `eas diagnostics`
725
+
726
+ display environment info
727
+
728
+ ```
729
+ USAGE
730
+ $ eas diagnostics
731
+
732
+ DESCRIPTION
733
+ display environment info
734
+ ```
735
+
736
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/diagnostics.ts)_
737
+
738
+ ## `eas help [COMMAND]`
739
+
740
+ display help for eas-cli
741
+
742
+ ```
743
+ USAGE
744
+ $ eas help [COMMAND] [-n]
745
+
746
+ ARGUMENTS
747
+ COMMAND Command to show help for.
748
+
749
+ FLAGS
750
+ -n, --nested-commands Include all nested commands in the output.
751
+
752
+ DESCRIPTION
753
+ display help for eas-cli
754
+ ```
755
+
756
+ _See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.1.16/src/commands/help.ts)_
757
+
758
+ ## `eas init`
759
+
760
+ create or link an EAS project
761
+
762
+ ```
763
+ USAGE
764
+ $ eas init [--force --id <value>] [--non-interactive ]
765
+
766
+ FLAGS
767
+ --force Whether to overwrite any existing project ID
768
+ --id=<value> ID of the EAS project to link
769
+ --non-interactive Run the command in non-interactive mode.
770
+
771
+ DESCRIPTION
772
+ create or link an EAS project
773
+
774
+ ALIASES
775
+ $ eas init
776
+ ```
777
+
778
+ ## `eas login`
779
+
780
+ log in with your Expo account
781
+
782
+ ```
783
+ USAGE
784
+ $ eas login
785
+
786
+ DESCRIPTION
787
+ log in with your Expo account
788
+
789
+ ALIASES
790
+ $ eas login
791
+ ```
792
+
793
+ ## `eas logout`
794
+
795
+ log out
796
+
797
+ ```
798
+ USAGE
799
+ $ eas logout
800
+
801
+ DESCRIPTION
802
+ log out
803
+
804
+ ALIASES
805
+ $ eas logout
806
+ ```
807
+
808
+ ## `eas metadata:lint`
809
+
810
+ validate the local store configuration
811
+
812
+ ```
813
+ USAGE
814
+ $ eas metadata:lint [--json] [--profile <value>]
815
+
816
+ FLAGS
817
+ --json Enable JSON output, non-JSON messages will be printed to stderr
818
+ --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
819
+
820
+ DESCRIPTION
821
+ validate the local store configuration
822
+ ```
823
+
824
+ _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/metadata/lint.ts)_
825
+
826
+ ## `eas metadata:pull`
827
+
828
+ generate the local store configuration from the app stores
829
+
830
+ ```
831
+ USAGE
832
+ $ eas metadata:pull [-e <value>]
833
+
834
+ FLAGS
835
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
836
+
837
+ DESCRIPTION
838
+ generate the local store configuration from the app stores
839
+ ```
840
+
841
+ _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/metadata/pull.ts)_
842
+
843
+ ## `eas metadata:push`
844
+
845
+ sync the local store configuration to the app stores
846
+
847
+ ```
848
+ USAGE
849
+ $ eas metadata:push [-e <value>]
850
+
851
+ FLAGS
852
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
853
+
854
+ DESCRIPTION
855
+ sync the local store configuration to the app stores
856
+ ```
857
+
858
+ _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/metadata/push.ts)_
859
+
860
+ ## `eas open`
861
+
862
+ open the project page in a web browser
863
+
864
+ ```
865
+ USAGE
866
+ $ eas open
867
+
868
+ DESCRIPTION
869
+ open the project page in a web browser
870
+ ```
871
+
872
+ _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/open.ts)_
873
+
874
+ ## `eas project:info`
875
+
876
+ information about the current project
877
+
878
+ ```
879
+ USAGE
880
+ $ eas project:info
881
+
882
+ DESCRIPTION
883
+ information about the current project
884
+ ```
885
+
886
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/project/info.ts)_
887
+
888
+ ## `eas project:init`
889
+
890
+ create or link an EAS project
891
+
892
+ ```
893
+ USAGE
894
+ $ eas project:init [--force --id <value>] [--non-interactive ]
895
+
896
+ FLAGS
897
+ --force Whether to overwrite any existing project ID
898
+ --id=<value> ID of the EAS project to link
899
+ --non-interactive Run the command in non-interactive mode.
900
+
901
+ DESCRIPTION
902
+ create or link an EAS project
903
+
904
+ ALIASES
905
+ $ eas init
906
+ ```
907
+
908
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/project/init.ts)_
909
+
910
+ ## `eas secret:create`
911
+
912
+ create an environment secret on the current project or owner account
913
+
914
+ ```
915
+ USAGE
916
+ $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--type string|file] [--force]
917
+ [--non-interactive]
918
+
919
+ FLAGS
920
+ --force Delete and recreate existing secrets
921
+ --name=<value> Name of the secret
922
+ --non-interactive Run the command in non-interactive mode.
923
+ --scope=(account|project) [default: project] Scope for the secret
924
+ --type=(string|file) The type of secret
925
+ --value=<value> Text value or path to a file to store in the secret
926
+
927
+ DESCRIPTION
928
+ create an environment secret on the current project or owner account
929
+ ```
930
+
931
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/secret/create.ts)_
932
+
933
+ ## `eas secret:delete`
934
+
935
+ delete an environment secret by ID
936
+
937
+ ```
938
+ USAGE
939
+ $ eas secret:delete [--id <value>] [--non-interactive]
940
+
941
+ FLAGS
942
+ --id=<value> ID of the secret to delete
943
+ --non-interactive Run the command in non-interactive mode.
944
+
945
+ DESCRIPTION
946
+ delete an environment secret by ID
947
+ ```
948
+
949
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/secret/delete.ts)_
950
+
951
+ ## `eas secret:list`
952
+
953
+ list environment secrets available for your current app
954
+
955
+ ```
956
+ USAGE
957
+ $ eas secret:list
958
+
959
+ DESCRIPTION
960
+ list environment secrets available for your current app
961
+ ```
962
+
963
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/secret/list.ts)_
964
+
965
+ ## `eas secret:push`
966
+
967
+ read environment secrets from env file and store on the server
968
+
969
+ ```
970
+ USAGE
971
+ $ eas secret:push [--scope account|project] [--env-file <value>] [--force] [--non-interactive]
972
+
973
+ FLAGS
974
+ --env-file=<value> Env file with secrets
975
+ --force Delete and recreate existing secrets
976
+ --non-interactive Run the command in non-interactive mode.
977
+ --scope=(account|project) [default: project] Scope for the secrets
978
+
979
+ DESCRIPTION
980
+ read environment secrets from env file and store on the server
981
+ ```
982
+
983
+ _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/secret/push.ts)_
984
+
985
+ ## `eas submit`
986
+
987
+ submit app binary to App Store and/or Play Store
988
+
989
+ ```
990
+ USAGE
991
+ $ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
992
+ [--verbose] [--wait] [--non-interactive]
993
+
994
+ FLAGS
995
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
996
+ eas.json.
997
+ -p, --platform=(android|ios|all)
998
+ --id=<value> ID of the build to submit
999
+ --latest Submit the latest build for specified platform
1000
+ --non-interactive Run command in non-interactive mode
1001
+ --path=<value> Path to the .apk/.aab/.ipa file
1002
+ --url=<value> App archive url
1003
+ --verbose Always print logs from Submission Service
1004
+ --[no-]wait Wait for submission to complete
1005
+
1006
+ DESCRIPTION
1007
+ submit app binary to App Store and/or Play Store
1008
+
1009
+ ALIASES
1010
+ $ eas build:submit
1011
+ ```
1012
+
1013
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/submit.ts)_
1014
+
1015
+ ## `eas update`
1016
+
1017
+ publish an update group
1018
+
1019
+ ```
1020
+ USAGE
1021
+ $ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
1022
+ [--group <value> | | ] [-p android|ios|all] [--auto] [--private-key-path <value>] [--json --non-interactive]
1023
+
1024
+ FLAGS
1025
+ -p, --platform=(android|ios|all) [default: all]
1026
+ --auto Use the current git branch and commit message for the EAS branch and update message
1027
+ --branch=<value> Branch to publish the update group on
1028
+ --group=<value> Update group to republish
1029
+ --input-dir=<value> [default: dist] Location of the bundle
1030
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1031
+ --message=<value> A short message describing the update
1032
+ --non-interactive Run the command in non-interactive mode.
1033
+ --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
1034
+ expo-updates' configuration. Defaults to a file named "private-key.pem" in the
1035
+ certificate's directory.
1036
+ --republish Republish an update group
1037
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
1038
+
1039
+ DESCRIPTION
1040
+ publish an update group
1041
+ ```
1042
+
1043
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/update/index.ts)_
1044
+
1045
+ ## `eas update:configure`
1046
+
1047
+ configure the project to support EAS Update
1048
+
1049
+ ```
1050
+ USAGE
1051
+ $ eas update:configure [-p android|ios|all] [--non-interactive]
1052
+
1053
+ FLAGS
1054
+ -p, --platform=(android|ios|all) [default: all] Platform to configure
1055
+ --non-interactive Run the command in non-interactive mode.
1056
+
1057
+ DESCRIPTION
1058
+ configure the project to support EAS Update
1059
+ ```
1060
+
1061
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/update/configure.ts)_
1062
+
1063
+ ## `eas update:delete GROUPID`
1064
+
1065
+ delete all the updates in an update group
1066
+
1067
+ ```
1068
+ USAGE
1069
+ $ eas update:delete [GROUPID] [--json --non-interactive]
1070
+
1071
+ ARGUMENTS
1072
+ GROUPID The ID of an update group to delete.
1073
+
1074
+ FLAGS
1075
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1076
+ --non-interactive Run the command in non-interactive mode.
1077
+
1078
+ DESCRIPTION
1079
+ delete all the updates in an update group
1080
+ ```
1081
+
1082
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/update/delete.ts)_
1083
+
1084
+ ## `eas update:list`
1085
+
1086
+ view the recent updates
1087
+
1088
+ ```
1089
+ USAGE
1090
+ $ eas update:list [--branch <value> | --all] [--offset <value>] [--limit <value>] [--json --non-interactive]
1091
+
1092
+ FLAGS
1093
+ --all List updates on all branches
1094
+ --branch=<value> List updates only on this branch
1095
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1096
+ --limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
1097
+ --non-interactive Run the command in non-interactive mode.
1098
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
1099
+
1100
+ DESCRIPTION
1101
+ view the recent updates
1102
+ ```
1103
+
1104
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/update/list.ts)_
1105
+
1106
+ ## `eas update:view GROUPID`
1107
+
1108
+ update group details
1109
+
1110
+ ```
1111
+ USAGE
1112
+ $ eas update:view [GROUPID] [--json]
1113
+
1114
+ ARGUMENTS
1115
+ GROUPID The ID of an update group.
1116
+
1117
+ FLAGS
1118
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1119
+
1120
+ DESCRIPTION
1121
+ update group details
1122
+ ```
1123
+
1124
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/update/view.ts)_
1125
+
1126
+ ## `eas webhook:create`
1127
+
1128
+ create a webhook
1129
+
1130
+ ```
1131
+ USAGE
1132
+ $ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
1133
+
1134
+ FLAGS
1135
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1136
+ --non-interactive Run the command in non-interactive mode.
1137
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1138
+ 'Expo-Signature' header.
1139
+ --url=<value> Webhook URL
1140
+
1141
+ DESCRIPTION
1142
+ create a webhook
1143
+ ```
1144
+
1145
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/webhook/create.ts)_
1146
+
1147
+ ## `eas webhook:delete [ID]`
1148
+
1149
+ delete a webhook
1150
+
1151
+ ```
1152
+ USAGE
1153
+ $ eas webhook:delete [ID] [--non-interactive]
1154
+
1155
+ ARGUMENTS
1156
+ ID ID of the webhook to delete
1157
+
1158
+ FLAGS
1159
+ --non-interactive Run the command in non-interactive mode.
1160
+
1161
+ DESCRIPTION
1162
+ delete a webhook
1163
+ ```
1164
+
1165
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1166
+
1167
+ ## `eas webhook:list`
1168
+
1169
+ list webhooks
1170
+
1171
+ ```
1172
+ USAGE
1173
+ $ eas webhook:list [--event BUILD|SUBMIT]
1174
+
1175
+ FLAGS
1176
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1177
+
1178
+ DESCRIPTION
1179
+ list webhooks
1180
+ ```
1181
+
1182
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/webhook/list.ts)_
1183
+
1184
+ ## `eas webhook:update`
1185
+
1186
+ update a webhook
1187
+
1188
+ ```
1189
+ USAGE
1190
+ $ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
1191
+
1192
+ FLAGS
1193
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1194
+ --id=<value> (required) Webhook ID
1195
+ --non-interactive Run the command in non-interactive mode.
1196
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1197
+ 'Expo-Signature' header.
1198
+ --url=<value> Webhook URL
1199
+
1200
+ DESCRIPTION
1201
+ update a webhook
1202
+ ```
1203
+
1204
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/webhook/update.ts)_
1205
+
1206
+ ## `eas webhook:view ID`
1207
+
1208
+ view a webhook
1209
+
1210
+ ```
1211
+ USAGE
1212
+ $ eas webhook:view [ID]
1213
+
1214
+ ARGUMENTS
1215
+ ID ID of the webhook to view
1216
+
1217
+ DESCRIPTION
1218
+ view a webhook
1219
+ ```
1220
+
1221
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v2.8.0/packages/eas-cli/src/commands/webhook/view.ts)_
1222
+
1223
+ ## `eas whoami`
1224
+
1225
+ show the username you are logged in as
1226
+
1227
+ ```
1228
+ USAGE
1229
+ $ eas whoami
1230
+
1231
+ DESCRIPTION
1232
+ show the username you are logged in as
1233
+
1234
+ ALIASES
1235
+ $ eas whoami
1236
+ ```
109
1237
  <!-- commandsstop -->