eas-cli 14.4.1 → 14.6.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 (58) hide show
  1. package/README.md +147 -91
  2. package/build/build/android/graphql.js +2 -0
  3. package/build/build/android/prepareJob.js +1 -0
  4. package/build/build/android/version.d.ts +1 -0
  5. package/build/build/android/version.js +5 -1
  6. package/build/build/build.js +4 -3
  7. package/build/build/configure.d.ts +11 -0
  8. package/build/build/configure.js +46 -1
  9. package/build/build/evaluateConfigWithEnvVarsAsync.js +2 -4
  10. package/build/build/ios/build.js +2 -0
  11. package/build/build/ios/graphql.js +2 -0
  12. package/build/build/ios/prepareJob.js +1 -0
  13. package/build/build/ios/version.js +4 -1
  14. package/build/build/local.js +1 -1
  15. package/build/build/metadata.js +0 -1
  16. package/build/build/runBuildAndSubmit.d.ts +12 -1
  17. package/build/build/runBuildAndSubmit.js +16 -13
  18. package/build/build/utils/environment.d.ts +4 -0
  19. package/build/build/utils/environment.js +20 -0
  20. package/build/commands/build/dev.d.ts +23 -0
  21. package/build/commands/build/dev.js +225 -0
  22. package/build/commands/build/index.js +9 -1
  23. package/build/commands/build/inspect.js +26 -18
  24. package/build/commands/build/internal.js +22 -14
  25. package/build/commands/build/list.d.ts +1 -0
  26. package/build/commands/build/list.js +4 -0
  27. package/build/commands/{worker → deploy}/alias.js +4 -4
  28. package/build/commands/{worker/deploy.js → deploy/index.js} +5 -5
  29. package/build/commands/fingerprint/compare.d.ts +14 -1
  30. package/build/commands/fingerprint/compare.js +192 -53
  31. package/build/commands/project/onboarding.js +23 -14
  32. package/build/commands/update/index.js +3 -6
  33. package/build/commands/update/roll-back-to-embedded.js +2 -2
  34. package/build/credentials/ios/appstore/ensureAppExists.d.ts +22 -1
  35. package/build/credentials/ios/appstore/ensureAppExists.js +73 -2
  36. package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +7 -0
  37. package/build/credentials/ios/appstore/ensureTestFlightGroup.js +158 -0
  38. package/build/credentials/ios/appstore/provisioningProfile.js +1 -0
  39. package/build/credentials/ios/appstore/resolveCredentials.js +6 -1
  40. package/build/graphql/generated.d.ts +313 -3
  41. package/build/graphql/generated.js +11 -2
  42. package/build/graphql/queries/FingerprintQuery.d.ts +16 -0
  43. package/build/graphql/queries/FingerprintQuery.js +61 -0
  44. package/build/graphql/types/Fingerprint.js +18 -0
  45. package/build/project/ios/exemptEncryption.d.ts +7 -0
  46. package/build/project/ios/exemptEncryption.js +80 -0
  47. package/build/project/publish.d.ts +4 -4
  48. package/build/project/publish.js +9 -8
  49. package/build/project/resolveRuntimeVersionAsync.d.ts +4 -4
  50. package/build/project/resolveRuntimeVersionAsync.js +4 -4
  51. package/build/submit/ios/AppProduce.js +12 -23
  52. package/build/utils/fingerprintCli.d.ts +2 -1
  53. package/build/utils/fingerprintCli.js +11 -3
  54. package/build/worker/upload.js +19 -3
  55. package/oclif.manifest.json +217 -155
  56. package/package.json +6 -6
  57. /package/build/commands/{worker → deploy}/alias.d.ts +0 -0
  58. /package/build/commands/{worker/deploy.d.ts → deploy/index.d.ts} +0 -0
package/README.md CHANGED
@@ -69,6 +69,7 @@ eas --help COMMAND
69
69
  * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
70
70
  * [`eas build:configure`](#eas-buildconfigure)
71
71
  * [`eas build:delete [BUILD_ID]`](#eas-builddelete-build_id)
72
+ * [`eas build:dev`](#eas-builddev)
72
73
  * [`eas build:inspect`](#eas-buildinspect)
73
74
  * [`eas build:list`](#eas-buildlist)
74
75
  * [`eas build:resign`](#eas-buildresign)
@@ -105,6 +106,7 @@ eas --help COMMAND
105
106
  * [`eas env:pull [ENVIRONMENT]`](#eas-envpull-environment)
106
107
  * [`eas env:push [ENVIRONMENT]`](#eas-envpush-environment)
107
108
  * [`eas env:update [ENVIRONMENT]`](#eas-envupdate-environment)
109
+ * [`eas fingerprint:compare [HASH1] [HASH2]`](#eas-fingerprintcompare-hash1-hash2)
108
110
  * [`eas help [COMMAND]`](#eas-help-command)
109
111
  * [`eas init`](#eas-init)
110
112
  * [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
@@ -158,7 +160,7 @@ ALIASES
158
160
  $ eas login
159
161
  ```
160
162
 
161
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/account/login.ts)_
163
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/account/login.ts)_
162
164
 
163
165
  ## `eas account:logout`
164
166
 
@@ -175,7 +177,7 @@ ALIASES
175
177
  $ eas logout
176
178
  ```
177
179
 
178
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/account/logout.ts)_
180
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/account/logout.ts)_
179
181
 
180
182
  ## `eas account:view`
181
183
 
@@ -192,7 +194,7 @@ ALIASES
192
194
  $ eas whoami
193
195
  ```
194
196
 
195
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/account/view.ts)_
197
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/account/view.ts)_
196
198
 
197
199
  ## `eas analytics [STATUS]`
198
200
 
@@ -206,7 +208,7 @@ DESCRIPTION
206
208
  display or change analytics settings
207
209
  ```
208
210
 
209
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/analytics.ts)_
211
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/analytics.ts)_
210
212
 
211
213
  ## `eas autocomplete [SHELL]`
212
214
 
@@ -258,7 +260,7 @@ DESCRIPTION
258
260
  create a branch
259
261
  ```
260
262
 
261
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/branch/create.ts)_
263
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/create.ts)_
262
264
 
263
265
  ## `eas branch:delete [NAME]`
264
266
 
@@ -279,7 +281,7 @@ DESCRIPTION
279
281
  delete a branch
280
282
  ```
281
283
 
282
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/branch/delete.ts)_
284
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/delete.ts)_
283
285
 
284
286
  ## `eas branch:list`
285
287
 
@@ -299,7 +301,7 @@ DESCRIPTION
299
301
  list all branches
300
302
  ```
301
303
 
302
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/branch/list.ts)_
304
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/list.ts)_
303
305
 
304
306
  ## `eas branch:rename`
305
307
 
@@ -319,7 +321,7 @@ DESCRIPTION
319
321
  rename a branch
320
322
  ```
321
323
 
322
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/branch/rename.ts)_
324
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/rename.ts)_
323
325
 
324
326
  ## `eas branch:view [NAME]`
325
327
 
@@ -342,7 +344,7 @@ DESCRIPTION
342
344
  view a branch
343
345
  ```
344
346
 
345
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/branch/view.ts)_
347
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/view.ts)_
346
348
 
347
349
  ## `eas build`
348
350
 
@@ -379,7 +381,7 @@ DESCRIPTION
379
381
  start a build
380
382
  ```
381
383
 
382
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/index.ts)_
384
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/index.ts)_
383
385
 
384
386
  ## `eas build:cancel [BUILD_ID]`
385
387
 
@@ -398,7 +400,7 @@ DESCRIPTION
398
400
  cancel a build
399
401
  ```
400
402
 
401
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/cancel.ts)_
403
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/cancel.ts)_
402
404
 
403
405
  ## `eas build:configure`
404
406
 
@@ -415,7 +417,7 @@ DESCRIPTION
415
417
  configure the project to support EAS Build
416
418
  ```
417
419
 
418
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/configure.ts)_
420
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/configure.ts)_
419
421
 
420
422
  ## `eas build:delete [BUILD_ID]`
421
423
 
@@ -434,7 +436,27 @@ DESCRIPTION
434
436
  delete a build
435
437
  ```
436
438
 
437
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/delete.ts)_
439
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/delete.ts)_
440
+
441
+ ## `eas build:dev`
442
+
443
+ run dev client simulator/emulator build with matching fingerprint or create a new one
444
+
445
+ ```
446
+ USAGE
447
+ $ eas build:dev [-p ios|android] [-e <value>]
448
+
449
+ FLAGS
450
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. It must be a profile allowing to create
451
+ emulator/simulator internal distribution dev client builds. The "development-simulator"
452
+ build profile will be selected by default.
453
+ -p, --platform=(ios|android)
454
+
455
+ DESCRIPTION
456
+ run dev client simulator/emulator build with matching fingerprint or create a new one
457
+ ```
458
+
459
+ _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/dev.ts)_
438
460
 
439
461
  ## `eas build:inspect`
440
462
 
@@ -469,7 +491,7 @@ DESCRIPTION
469
491
  inspect the state of the project at specific build stages, useful for troubleshooting
470
492
  ```
471
493
 
472
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/inspect.ts)_
494
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/inspect.ts)_
473
495
 
474
496
  ## `eas build:list`
475
497
 
@@ -480,8 +502,8 @@ USAGE
480
502
  $ eas build:list [-p android|ios|all] [--status
481
503
  new|in-queue|in-progress|pending-cancel|errored|finished|canceled] [--distribution store|internal|simulator]
482
504
  [--channel <value>] [--app-version <value>] [--app-build-version <value>] [--sdk-version <value>] [--runtime-version
483
- <value>] [--app-identifier <value>] [-e <value>] [--git-commit-hash <value>] [--offset <value>] [--limit <value>]
484
- [--json --non-interactive] [--simulator]
505
+ <value>] [--app-identifier <value>] [-e <value>] [--git-commit-hash <value>] [--fingerprint-hash <value>] [--offset
506
+ <value>] [--limit <value>] [--json --non-interactive] [--simulator]
485
507
 
486
508
  FLAGS
487
509
  -e, --build-profile=<value> Filter only builds created with the
@@ -496,6 +518,8 @@ FLAGS
496
518
  --channel=<value>
497
519
  --distribution=(store|internal|simulator) Filter only builds with the specified
498
520
  distribution type
521
+ --fingerprint-hash=<value> Filter only builds with the specified
522
+ fingerprint hash
499
523
  --git-commit-hash=<value> Filter only builds created with the
500
524
  specified git commit hash
501
525
  --json Enable JSON output, non-JSON messages
@@ -519,7 +543,7 @@ DESCRIPTION
519
543
  list all builds for your project
520
544
  ```
521
545
 
522
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/list.ts)_
546
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/list.ts)_
523
547
 
524
548
  ## `eas build:resign`
525
549
 
@@ -548,7 +572,7 @@ DESCRIPTION
548
572
  re-sign a build archive
549
573
  ```
550
574
 
551
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/resign.ts)_
575
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/resign.ts)_
552
576
 
553
577
  ## `eas build:run`
554
578
 
@@ -574,7 +598,7 @@ DESCRIPTION
574
598
  run simulator/emulator builds from eas-cli
575
599
  ```
576
600
 
577
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/run.ts)_
601
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/run.ts)_
578
602
 
579
603
  ## `eas build:submit`
580
604
 
@@ -624,7 +648,7 @@ DESCRIPTION
624
648
  get the latest version from EAS servers
625
649
  ```
626
650
 
627
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/version/get.ts)_
651
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/version/get.ts)_
628
652
 
629
653
  ## `eas build:version:set`
630
654
 
@@ -643,7 +667,7 @@ DESCRIPTION
643
667
  update version of an app
644
668
  ```
645
669
 
646
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/version/set.ts)_
670
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/version/set.ts)_
647
671
 
648
672
  ## `eas build:version:sync`
649
673
 
@@ -662,7 +686,7 @@ DESCRIPTION
662
686
  update a version in native code with a value stored on EAS servers
663
687
  ```
664
688
 
665
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/version/sync.ts)_
689
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/version/sync.ts)_
666
690
 
667
691
  ## `eas build:view [BUILD_ID]`
668
692
 
@@ -679,7 +703,7 @@ DESCRIPTION
679
703
  view a build for your project
680
704
  ```
681
705
 
682
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/build/view.ts)_
706
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/view.ts)_
683
707
 
684
708
  ## `eas channel:create [NAME]`
685
709
 
@@ -700,7 +724,7 @@ DESCRIPTION
700
724
  create a channel
701
725
  ```
702
726
 
703
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/create.ts)_
727
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/create.ts)_
704
728
 
705
729
  ## `eas channel:edit [NAME]`
706
730
 
@@ -722,7 +746,7 @@ DESCRIPTION
722
746
  point a channel at a new branch
723
747
  ```
724
748
 
725
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/edit.ts)_
749
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/edit.ts)_
726
750
 
727
751
  ## `eas channel:list`
728
752
 
@@ -742,7 +766,7 @@ DESCRIPTION
742
766
  list all channels
743
767
  ```
744
768
 
745
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/list.ts)_
769
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/list.ts)_
746
770
 
747
771
  ## `eas channel:pause [NAME]`
748
772
 
@@ -764,7 +788,7 @@ DESCRIPTION
764
788
  pause a channel to stop it from sending updates
765
789
  ```
766
790
 
767
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/pause.ts)_
791
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/pause.ts)_
768
792
 
769
793
  ## `eas channel:resume [NAME]`
770
794
 
@@ -786,7 +810,7 @@ DESCRIPTION
786
810
  resume a channel to start sending updates
787
811
  ```
788
812
 
789
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/resume.ts)_
813
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/resume.ts)_
790
814
 
791
815
  ## `eas channel:rollout [CHANNEL]`
792
816
 
@@ -819,7 +843,7 @@ DESCRIPTION
819
843
  Roll a new branch out on a channel incrementally.
820
844
  ```
821
845
 
822
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/rollout.ts)_
846
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/rollout.ts)_
823
847
 
824
848
  ## `eas channel:view [NAME]`
825
849
 
@@ -842,7 +866,7 @@ DESCRIPTION
842
866
  view a channel
843
867
  ```
844
868
 
845
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/channel/view.ts)_
869
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/view.ts)_
846
870
 
847
871
  ## `eas config`
848
872
 
@@ -863,7 +887,7 @@ DESCRIPTION
863
887
  display project configuration (app.json + eas.json)
864
888
  ```
865
889
 
866
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/config.ts)_
890
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/config.ts)_
867
891
 
868
892
  ## `eas credentials`
869
893
 
@@ -880,7 +904,7 @@ DESCRIPTION
880
904
  manage credentials
881
905
  ```
882
906
 
883
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/credentials/index.ts)_
907
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/credentials/index.ts)_
884
908
 
885
909
  ## `eas credentials:configure-build`
886
910
 
@@ -898,11 +922,11 @@ DESCRIPTION
898
922
  Set up credentials for building your project.
899
923
  ```
900
924
 
901
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
925
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
902
926
 
903
927
  ## `eas deploy [options]`
904
928
 
905
- Deploy your Expo web build
929
+ Deploy your Expo Router web build and API Routes.
906
930
 
907
931
  ```
908
932
  USAGE
@@ -920,15 +944,17 @@ FLAGS
920
944
  --prod Create a new production deployment.
921
945
 
922
946
  DESCRIPTION
923
- Deploy your Expo web build
947
+ Deploy your Expo Router web build and API Routes.
924
948
 
925
949
  ALIASES
926
- $ eas deploy
950
+ $ eas worker:deploy
927
951
  ```
928
952
 
953
+ _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/deploy/index.ts)_
954
+
929
955
  ## `eas deploy:alias`
930
956
 
931
- Assign deployment aliases
957
+ Assign deployment aliases.
932
958
 
933
959
  ```
934
960
  USAGE
@@ -942,16 +968,18 @@ FLAGS
942
968
  --prod Promote an existing deployment to production.
943
969
 
944
970
  DESCRIPTION
945
- Assign deployment aliases
971
+ Assign deployment aliases.
946
972
 
947
973
  ALIASES
948
- $ eas deploy:alias
974
+ $ eas worker:alias
949
975
  $ eas deploy:promote
950
976
  ```
951
977
 
978
+ _See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/deploy/alias.ts)_
979
+
952
980
  ## `eas deploy:promote`
953
981
 
954
- Assign deployment aliases
982
+ Assign deployment aliases.
955
983
 
956
984
  ```
957
985
  USAGE
@@ -965,10 +993,10 @@ FLAGS
965
993
  --prod Promote an existing deployment to production.
966
994
 
967
995
  DESCRIPTION
968
- Assign deployment aliases
996
+ Assign deployment aliases.
969
997
 
970
998
  ALIASES
971
- $ eas deploy:alias
999
+ $ eas worker:alias
972
1000
  $ eas deploy:promote
973
1001
  ```
974
1002
 
@@ -984,7 +1012,7 @@ DESCRIPTION
984
1012
  register new Apple Devices to use for internal distribution
985
1013
  ```
986
1014
 
987
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/device/create.ts)_
1015
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/create.ts)_
988
1016
 
989
1017
  ## `eas device:delete`
990
1018
 
@@ -1004,7 +1032,7 @@ DESCRIPTION
1004
1032
  remove a registered device from your account
1005
1033
  ```
1006
1034
 
1007
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/device/delete.ts)_
1035
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/delete.ts)_
1008
1036
 
1009
1037
  ## `eas device:list`
1010
1038
 
@@ -1025,7 +1053,7 @@ DESCRIPTION
1025
1053
  list all registered devices for your account
1026
1054
  ```
1027
1055
 
1028
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/device/list.ts)_
1056
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/list.ts)_
1029
1057
 
1030
1058
  ## `eas device:rename`
1031
1059
 
@@ -1046,7 +1074,7 @@ DESCRIPTION
1046
1074
  rename a registered device
1047
1075
  ```
1048
1076
 
1049
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/device/rename.ts)_
1077
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/rename.ts)_
1050
1078
 
1051
1079
  ## `eas device:view [UDID]`
1052
1080
 
@@ -1060,7 +1088,7 @@ DESCRIPTION
1060
1088
  view a device for your project
1061
1089
  ```
1062
1090
 
1063
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/device/view.ts)_
1091
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/view.ts)_
1064
1092
 
1065
1093
  ## `eas diagnostics`
1066
1094
 
@@ -1074,7 +1102,7 @@ DESCRIPTION
1074
1102
  display environment info
1075
1103
  ```
1076
1104
 
1077
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/diagnostics.ts)_
1105
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/diagnostics.ts)_
1078
1106
 
1079
1107
  ## `eas env:create [ENVIRONMENT]`
1080
1108
 
@@ -1103,7 +1131,7 @@ DESCRIPTION
1103
1131
  create an environment variable for the current project or account
1104
1132
  ```
1105
1133
 
1106
- _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/create.ts)_
1134
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/create.ts)_
1107
1135
 
1108
1136
  ## `eas env:delete [ENVIRONMENT]`
1109
1137
 
@@ -1127,7 +1155,7 @@ DESCRIPTION
1127
1155
  delete an environment variable for the current project or account
1128
1156
  ```
1129
1157
 
1130
- _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/delete.ts)_
1158
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/delete.ts)_
1131
1159
 
1132
1160
  ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1133
1161
 
@@ -1148,7 +1176,7 @@ DESCRIPTION
1148
1176
  execute a command with environment variables from the selected environment
1149
1177
  ```
1150
1178
 
1151
- _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/exec.ts)_
1179
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/exec.ts)_
1152
1180
 
1153
1181
  ## `eas env:get [ENVIRONMENT]`
1154
1182
 
@@ -1173,7 +1201,7 @@ DESCRIPTION
1173
1201
  view an environment variable for the current project or account
1174
1202
  ```
1175
1203
 
1176
- _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/get.ts)_
1204
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/get.ts)_
1177
1205
 
1178
1206
  ## `eas env:list [ENVIRONMENT]`
1179
1207
 
@@ -1198,7 +1226,7 @@ DESCRIPTION
1198
1226
  list environment variables for the current project or account
1199
1227
  ```
1200
1228
 
1201
- _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/list.ts)_
1229
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/list.ts)_
1202
1230
 
1203
1231
  ## `eas env:pull [ENVIRONMENT]`
1204
1232
 
@@ -1221,7 +1249,7 @@ DESCRIPTION
1221
1249
  pull environment variables for the selected environment to .env file
1222
1250
  ```
1223
1251
 
1224
- _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/pull.ts)_
1252
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/pull.ts)_
1225
1253
 
1226
1254
  ## `eas env:push [ENVIRONMENT]`
1227
1255
 
@@ -1242,7 +1270,7 @@ DESCRIPTION
1242
1270
  push environment variables from .env file to the selected environment
1243
1271
  ```
1244
1272
 
1245
- _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/push.ts)_
1273
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/push.ts)_
1246
1274
 
1247
1275
  ## `eas env:update [ENVIRONMENT]`
1248
1276
 
@@ -1273,7 +1301,39 @@ DESCRIPTION
1273
1301
  update an environment variable on the current project or account
1274
1302
  ```
1275
1303
 
1276
- _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/env/update.ts)_
1304
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/update.ts)_
1305
+
1306
+ ## `eas fingerprint:compare [HASH1] [HASH2]`
1307
+
1308
+ compare fingerprints of the current project, builds and updates
1309
+
1310
+ ```
1311
+ USAGE
1312
+ $ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--json --non-interactive]
1313
+
1314
+ ARGUMENTS
1315
+ HASH1 If provided alone, HASH1 is compared against the current project's fingerprint.
1316
+ HASH2 If two hashes are provided, HASH1 is compared against HASH2.
1317
+
1318
+ FLAGS
1319
+ --build-id=<value> Compare the fingerprint with the build with the specified ID
1320
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1321
+ --non-interactive Run the command in non-interactive mode.
1322
+
1323
+ DESCRIPTION
1324
+ compare fingerprints of the current project, builds and updates
1325
+
1326
+ EXAMPLES
1327
+ $ eas fingerprint:compare # Compare fingerprints in interactive mode
1328
+
1329
+ $ eas fingerprint:compare c71a7d475aa6f75291bc93cd74aef395c3c94eee # Compare fingerprint against local directory
1330
+
1331
+ $ eas fingerprint:compare c71a7d475aa6f75291bc93cd74aef395c3c94eee f0d6a916e73f401d428e6e006e07b12453317ba2 # Compare provided fingerprints
1332
+
1333
+ $ eas fingerprint:compare --build-id 82bc6456-611a-48cb-8db4-5f9eb2ca1003 # Compare fingerprint from build against local directory
1334
+ ```
1335
+
1336
+ _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1277
1337
 
1278
1338
  ## `eas help [COMMAND]`
1279
1339
 
@@ -1381,7 +1441,7 @@ DESCRIPTION
1381
1441
  validate the local store configuration
1382
1442
  ```
1383
1443
 
1384
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/metadata/lint.ts)_
1444
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1385
1445
 
1386
1446
  ## `eas metadata:pull`
1387
1447
 
@@ -1398,7 +1458,7 @@ DESCRIPTION
1398
1458
  generate the local store configuration from the app stores
1399
1459
  ```
1400
1460
 
1401
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/metadata/pull.ts)_
1461
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1402
1462
 
1403
1463
  ## `eas metadata:push`
1404
1464
 
@@ -1415,7 +1475,7 @@ DESCRIPTION
1415
1475
  sync the local store configuration to the app stores
1416
1476
  ```
1417
1477
 
1418
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/metadata/push.ts)_
1478
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/metadata/push.ts)_
1419
1479
 
1420
1480
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
1421
1481
 
@@ -1445,7 +1505,7 @@ DESCRIPTION
1445
1505
  open the project page in a web browser
1446
1506
  ```
1447
1507
 
1448
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/open.ts)_
1508
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/open.ts)_
1449
1509
 
1450
1510
  ## `eas project:info`
1451
1511
 
@@ -1459,7 +1519,7 @@ DESCRIPTION
1459
1519
  information about the current project
1460
1520
  ```
1461
1521
 
1462
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/project/info.ts)_
1522
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/project/info.ts)_
1463
1523
 
1464
1524
  ## `eas project:init`
1465
1525
 
@@ -1482,7 +1542,7 @@ ALIASES
1482
1542
  $ eas init
1483
1543
  ```
1484
1544
 
1485
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/project/init.ts)_
1545
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/project/init.ts)_
1486
1546
 
1487
1547
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
1488
1548
 
@@ -1500,7 +1560,7 @@ ALIASES
1500
1560
  $ eas onboarding
1501
1561
  ```
1502
1562
 
1503
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/project/onboarding.ts)_
1563
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1504
1564
 
1505
1565
  ## `eas submit`
1506
1566
 
@@ -1531,7 +1591,7 @@ ALIASES
1531
1591
  $ eas build:submit
1532
1592
  ```
1533
1593
 
1534
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/submit.ts)_
1594
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/submit.ts)_
1535
1595
 
1536
1596
  ## `eas update`
1537
1597
 
@@ -1573,7 +1633,7 @@ DESCRIPTION
1573
1633
  publish an update group
1574
1634
  ```
1575
1635
 
1576
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/index.ts)_
1636
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/index.ts)_
1577
1637
 
1578
1638
  ## `eas update:configure`
1579
1639
 
@@ -1593,7 +1653,7 @@ DESCRIPTION
1593
1653
  configure the project to support EAS Update
1594
1654
  ```
1595
1655
 
1596
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/configure.ts)_
1656
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/configure.ts)_
1597
1657
 
1598
1658
  ## `eas update:delete GROUPID`
1599
1659
 
@@ -1614,7 +1674,7 @@ DESCRIPTION
1614
1674
  delete all the updates in an update group
1615
1675
  ```
1616
1676
 
1617
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/delete.ts)_
1677
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/delete.ts)_
1618
1678
 
1619
1679
  ## `eas update:edit [GROUPID]`
1620
1680
 
@@ -1638,7 +1698,7 @@ DESCRIPTION
1638
1698
  edit all the updates in an update group
1639
1699
  ```
1640
1700
 
1641
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/edit.ts)_
1701
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/edit.ts)_
1642
1702
 
1643
1703
  ## `eas update:list`
1644
1704
 
@@ -1660,7 +1720,7 @@ DESCRIPTION
1660
1720
  view the recent updates
1661
1721
  ```
1662
1722
 
1663
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/list.ts)_
1723
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/list.ts)_
1664
1724
 
1665
1725
  ## `eas update:republish`
1666
1726
 
@@ -1692,7 +1752,7 @@ DESCRIPTION
1692
1752
  roll back to an existing update
1693
1753
  ```
1694
1754
 
1695
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/republish.ts)_
1755
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/republish.ts)_
1696
1756
 
1697
1757
  ## `eas update:roll-back-to-embedded`
1698
1758
 
@@ -1720,7 +1780,7 @@ DESCRIPTION
1720
1780
  roll back to the embedded update
1721
1781
  ```
1722
1782
 
1723
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1783
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1724
1784
 
1725
1785
  ## `eas update:rollback`
1726
1786
 
@@ -1740,7 +1800,7 @@ DESCRIPTION
1740
1800
  roll back to an embedded update or an existing update
1741
1801
  ```
1742
1802
 
1743
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/rollback.ts)_
1803
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/rollback.ts)_
1744
1804
 
1745
1805
  ## `eas update:view GROUPID`
1746
1806
 
@@ -1760,7 +1820,7 @@ DESCRIPTION
1760
1820
  update group details
1761
1821
  ```
1762
1822
 
1763
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/update/view.ts)_
1823
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/view.ts)_
1764
1824
 
1765
1825
  ## `eas webhook:create`
1766
1826
 
@@ -1781,7 +1841,7 @@ DESCRIPTION
1781
1841
  create a webhook
1782
1842
  ```
1783
1843
 
1784
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/webhook/create.ts)_
1844
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/create.ts)_
1785
1845
 
1786
1846
  ## `eas webhook:delete [ID]`
1787
1847
 
@@ -1801,7 +1861,7 @@ DESCRIPTION
1801
1861
  delete a webhook
1802
1862
  ```
1803
1863
 
1804
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/webhook/delete.ts)_
1864
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1805
1865
 
1806
1866
  ## `eas webhook:list`
1807
1867
 
@@ -1819,7 +1879,7 @@ DESCRIPTION
1819
1879
  list webhooks
1820
1880
  ```
1821
1881
 
1822
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/webhook/list.ts)_
1882
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/list.ts)_
1823
1883
 
1824
1884
  ## `eas webhook:update`
1825
1885
 
@@ -1841,7 +1901,7 @@ DESCRIPTION
1841
1901
  update a webhook
1842
1902
  ```
1843
1903
 
1844
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/webhook/update.ts)_
1904
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/update.ts)_
1845
1905
 
1846
1906
  ## `eas webhook:view ID`
1847
1907
 
@@ -1858,7 +1918,7 @@ DESCRIPTION
1858
1918
  view a webhook
1859
1919
  ```
1860
1920
 
1861
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/webhook/view.ts)_
1921
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/view.ts)_
1862
1922
 
1863
1923
  ## `eas whoami`
1864
1924
 
@@ -1877,7 +1937,7 @@ ALIASES
1877
1937
 
1878
1938
  ## `eas worker:alias`
1879
1939
 
1880
- Assign deployment aliases
1940
+ Assign deployment aliases.
1881
1941
 
1882
1942
  ```
1883
1943
  USAGE
@@ -1891,18 +1951,16 @@ FLAGS
1891
1951
  --prod Promote an existing deployment to production.
1892
1952
 
1893
1953
  DESCRIPTION
1894
- Assign deployment aliases
1954
+ Assign deployment aliases.
1895
1955
 
1896
1956
  ALIASES
1897
- $ eas deploy:alias
1957
+ $ eas worker:alias
1898
1958
  $ eas deploy:promote
1899
1959
  ```
1900
1960
 
1901
- _See code: [packages/eas-cli/src/commands/worker/alias.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/worker/alias.ts)_
1902
-
1903
1961
  ## `eas deploy [options]`
1904
1962
 
1905
- Deploy your Expo web build
1963
+ Deploy your Expo Router web build and API Routes.
1906
1964
 
1907
1965
  ```
1908
1966
  USAGE
@@ -1920,14 +1978,12 @@ FLAGS
1920
1978
  --prod Create a new production deployment.
1921
1979
 
1922
1980
  DESCRIPTION
1923
- Deploy your Expo web build
1981
+ Deploy your Expo Router web build and API Routes.
1924
1982
 
1925
1983
  ALIASES
1926
- $ eas deploy
1984
+ $ eas worker:deploy
1927
1985
  ```
1928
1986
 
1929
- _See code: [packages/eas-cli/src/commands/worker/deploy.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/worker/deploy.ts)_
1930
-
1931
1987
  ## `eas workflow:create [NAME]`
1932
1988
 
1933
1989
  create a new workflow configuration YAML file
@@ -1946,7 +2002,7 @@ DESCRIPTION
1946
2002
  create a new workflow configuration YAML file
1947
2003
  ```
1948
2004
 
1949
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/workflow/create.ts)_
2005
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/workflow/create.ts)_
1950
2006
 
1951
2007
  ## `eas workflow:run [FILE]`
1952
2008
 
@@ -1966,7 +2022,7 @@ DESCRIPTION
1966
2022
  Run an EAS workflow
1967
2023
  ```
1968
2024
 
1969
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/workflow/run.ts)_
2025
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/workflow/run.ts)_
1970
2026
 
1971
2027
  ## `eas workflow:validate PATH`
1972
2028
 
@@ -1986,5 +2042,5 @@ DESCRIPTION
1986
2042
  validate a workflow configuration yaml file
1987
2043
  ```
1988
2044
 
1989
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v14.4.1/packages/eas-cli/src/commands/workflow/validate.ts)_
2045
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/workflow/validate.ts)_
1990
2046
  <!-- commandsstop -->