eas-cli 19.0.8 → 20.0.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.
- package/README.md +305 -101
- package/build/build/createContext.d.ts +2 -1
- package/build/build/createContext.js +3 -1
- package/build/build/ios/credentials.js +5 -1
- package/build/build/ios/prepareJob.js +3 -0
- package/build/build/runBuildAndSubmit.d.ts +1 -0
- package/build/build/runBuildAndSubmit.js +1 -0
- package/build/build/types.d.ts +1 -0
- package/build/commands/build/index.d.ts +1 -0
- package/build/commands/build/index.js +13 -0
- package/build/commands/build/internal.d.ts +1 -0
- package/build/commands/build/internal.js +5 -0
- package/build/commands/go.d.ts +1 -0
- package/build/commands/go.js +29 -1
- package/build/commands/observe/events.d.ts +3 -3
- package/build/commands/observe/events.js +69 -51
- package/build/commands/observe/{logs.d.ts → metrics-summary.d.ts} +3 -11
- package/build/commands/observe/metrics-summary.js +95 -0
- package/build/commands/observe/metrics.d.ts +8 -3
- package/build/commands/observe/metrics.js +63 -47
- package/build/commands/observe/routes.d.ts +0 -1
- package/build/commands/observe/routes.js +0 -4
- package/build/commands/observe/versions.d.ts +0 -1
- package/build/commands/observe/versions.js +0 -4
- package/build/commands/update/embedded/upload.d.ts +20 -0
- package/build/commands/update/embedded/upload.js +129 -0
- package/build/credentials/context.d.ts +2 -0
- package/build/credentials/context.js +2 -0
- package/build/credentials/ios/actions/DeviceUtils.d.ts +2 -0
- package/build/credentials/ios/actions/DeviceUtils.js +21 -0
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +1 -0
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +76 -14
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +8 -0
- package/build/graphql/client.js +1 -0
- package/build/graphql/generated.d.ts +70 -1
- package/build/graphql/mutations/EmbeddedUpdateAssetMutation.d.ts +13 -0
- package/build/graphql/mutations/EmbeddedUpdateAssetMutation.js +32 -0
- package/build/graphql/mutations/EmbeddedUpdateMutation.d.ts +14 -0
- package/build/graphql/mutations/EmbeddedUpdateMutation.js +37 -0
- package/build/graphql/queries/WorkflowRunQuery.d.ts +2 -1
- package/build/graphql/queries/WorkflowRunQuery.js +19 -6
- package/build/observe/formatCustomEvents.js +5 -5
- package/build/observe/metricNames.js +2 -0
- package/build/update/embeddedManifest.d.ts +3 -0
- package/build/update/embeddedManifest.js +28 -0
- package/oclif.manifest.json +1852 -1714
- package/package.json +6 -6
- package/build/commands/observe/logs.js +0 -141
package/README.md
CHANGED
|
@@ -133,6 +133,11 @@ eas --help COMMAND
|
|
|
133
133
|
* [`eas metadata:pull`](#eas-metadatapull)
|
|
134
134
|
* [`eas metadata:push`](#eas-metadatapush)
|
|
135
135
|
* [`eas new [PATH]`](#eas-new-path)
|
|
136
|
+
* [`eas observe:events [EVENTNAME]`](#eas-observeevents-eventname)
|
|
137
|
+
* [`eas observe:metrics [METRIC]`](#eas-observemetrics-metric)
|
|
138
|
+
* [`eas observe:metrics-summary`](#eas-observemetrics-summary)
|
|
139
|
+
* [`eas observe:routes`](#eas-observeroutes)
|
|
140
|
+
* [`eas observe:versions`](#eas-observeversions)
|
|
136
141
|
* [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
|
|
137
142
|
* [`eas open`](#eas-open)
|
|
138
143
|
* [`eas project:info`](#eas-projectinfo)
|
|
@@ -144,6 +149,7 @@ eas --help COMMAND
|
|
|
144
149
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
145
150
|
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
146
151
|
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
152
|
+
* [`eas update:embedded:upload`](#eas-updateembeddedupload)
|
|
147
153
|
* [`eas update:insights GROUPID`](#eas-updateinsights-groupid)
|
|
148
154
|
* [`eas update:list`](#eas-updatelist)
|
|
149
155
|
* [`eas update:republish`](#eas-updaterepublish)
|
|
@@ -190,7 +196,7 @@ ALIASES
|
|
|
190
196
|
$ eas login
|
|
191
197
|
```
|
|
192
198
|
|
|
193
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/
|
|
199
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
194
200
|
|
|
195
201
|
## `eas account:logout`
|
|
196
202
|
|
|
@@ -207,7 +213,7 @@ ALIASES
|
|
|
207
213
|
$ eas logout
|
|
208
214
|
```
|
|
209
215
|
|
|
210
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/
|
|
216
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
211
217
|
|
|
212
218
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
213
219
|
|
|
@@ -229,7 +235,7 @@ DESCRIPTION
|
|
|
229
235
|
view account usage and billing for the current cycle
|
|
230
236
|
```
|
|
231
237
|
|
|
232
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/
|
|
238
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
233
239
|
|
|
234
240
|
## `eas account:view`
|
|
235
241
|
|
|
@@ -246,7 +252,7 @@ ALIASES
|
|
|
246
252
|
$ eas whoami
|
|
247
253
|
```
|
|
248
254
|
|
|
249
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/
|
|
255
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
250
256
|
|
|
251
257
|
## `eas analytics [STATUS]`
|
|
252
258
|
|
|
@@ -260,7 +266,7 @@ DESCRIPTION
|
|
|
260
266
|
display or change analytics settings
|
|
261
267
|
```
|
|
262
268
|
|
|
263
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/
|
|
269
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
264
270
|
|
|
265
271
|
## `eas autocomplete [SHELL]`
|
|
266
272
|
|
|
@@ -312,7 +318,7 @@ DESCRIPTION
|
|
|
312
318
|
create a branch
|
|
313
319
|
```
|
|
314
320
|
|
|
315
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/
|
|
321
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
316
322
|
|
|
317
323
|
## `eas branch:delete [NAME]`
|
|
318
324
|
|
|
@@ -333,7 +339,7 @@ DESCRIPTION
|
|
|
333
339
|
delete a branch
|
|
334
340
|
```
|
|
335
341
|
|
|
336
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
342
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
337
343
|
|
|
338
344
|
## `eas branch:list`
|
|
339
345
|
|
|
@@ -353,7 +359,7 @@ DESCRIPTION
|
|
|
353
359
|
list all branches
|
|
354
360
|
```
|
|
355
361
|
|
|
356
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/
|
|
362
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
357
363
|
|
|
358
364
|
## `eas branch:rename`
|
|
359
365
|
|
|
@@ -373,7 +379,7 @@ DESCRIPTION
|
|
|
373
379
|
rename a branch
|
|
374
380
|
```
|
|
375
381
|
|
|
376
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
382
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
377
383
|
|
|
378
384
|
## `eas branch:view [NAME]`
|
|
379
385
|
|
|
@@ -396,7 +402,7 @@ DESCRIPTION
|
|
|
396
402
|
view a branch
|
|
397
403
|
```
|
|
398
404
|
|
|
399
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/
|
|
405
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
400
406
|
|
|
401
407
|
## `eas build`
|
|
402
408
|
|
|
@@ -406,7 +412,8 @@ start a build
|
|
|
406
412
|
USAGE
|
|
407
413
|
$ eas build [-p android|ios|all] [-e PROFILE_NAME] [--local] [--output <value>] [--wait] [--clear-cache]
|
|
408
414
|
[-s | --auto-submit-with-profile PROFILE_NAME] [--what-to-test <value>] [-m <value>] [--build-logger-level
|
|
409
|
-
trace|debug|info|warn|error|fatal] [--freeze-credentials] [--
|
|
415
|
+
trace|debug|info|warn|error|fatal] [--freeze-credentials] [--refresh-ad-hoc-provisioning-profile] [--verbose-logs]
|
|
416
|
+
[--json] [--non-interactive]
|
|
410
417
|
|
|
411
418
|
FLAGS
|
|
412
419
|
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if
|
|
@@ -425,6 +432,8 @@ FLAGS
|
|
|
425
432
|
--local Run build locally [experimental]
|
|
426
433
|
--non-interactive Run the command in non-interactive mode.
|
|
427
434
|
--output=<value> Output path for local build
|
|
435
|
+
--refresh-ad-hoc-provisioning-profile Refresh managed ad-hoc provisioning profiles from App Store Connect
|
|
436
|
+
before gathering build credentials
|
|
428
437
|
--verbose-logs Use verbose logs for the build process
|
|
429
438
|
--[no-]wait Wait for build(s) to complete
|
|
430
439
|
--what-to-test=<value> Specify the "What to Test" information for the build in TestFlight
|
|
@@ -434,7 +443,7 @@ DESCRIPTION
|
|
|
434
443
|
start a build
|
|
435
444
|
```
|
|
436
445
|
|
|
437
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/
|
|
446
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
438
447
|
|
|
439
448
|
## `eas build:cancel [BUILD_ID]`
|
|
440
449
|
|
|
@@ -454,7 +463,7 @@ DESCRIPTION
|
|
|
454
463
|
cancel a build
|
|
455
464
|
```
|
|
456
465
|
|
|
457
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
466
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
458
467
|
|
|
459
468
|
## `eas build:configure`
|
|
460
469
|
|
|
@@ -472,7 +481,7 @@ DESCRIPTION
|
|
|
472
481
|
configure the project to support EAS Build
|
|
473
482
|
```
|
|
474
483
|
|
|
475
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
484
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
476
485
|
|
|
477
486
|
## `eas build:delete [BUILD_ID]`
|
|
478
487
|
|
|
@@ -492,7 +501,7 @@ DESCRIPTION
|
|
|
492
501
|
delete a build
|
|
493
502
|
```
|
|
494
503
|
|
|
495
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
504
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
496
505
|
|
|
497
506
|
## `eas build:dev`
|
|
498
507
|
|
|
@@ -517,7 +526,7 @@ DESCRIPTION
|
|
|
517
526
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
518
527
|
```
|
|
519
528
|
|
|
520
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/
|
|
529
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
521
530
|
|
|
522
531
|
## `eas build:download`
|
|
523
532
|
|
|
@@ -544,7 +553,7 @@ DESCRIPTION
|
|
|
544
553
|
download a simulator/emulator build by build ID or fingerprint hash
|
|
545
554
|
```
|
|
546
555
|
|
|
547
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/
|
|
556
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
548
557
|
|
|
549
558
|
## `eas build:inspect`
|
|
550
559
|
|
|
@@ -582,7 +591,7 @@ DESCRIPTION
|
|
|
582
591
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
583
592
|
```
|
|
584
593
|
|
|
585
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/
|
|
594
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
586
595
|
|
|
587
596
|
## `eas build:list`
|
|
588
597
|
|
|
@@ -622,7 +631,7 @@ DESCRIPTION
|
|
|
622
631
|
list all builds for your project
|
|
623
632
|
```
|
|
624
633
|
|
|
625
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/
|
|
634
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
626
635
|
|
|
627
636
|
## `eas build:resign`
|
|
628
637
|
|
|
@@ -652,7 +661,7 @@ DESCRIPTION
|
|
|
652
661
|
re-sign a build archive
|
|
653
662
|
```
|
|
654
663
|
|
|
655
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/
|
|
664
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
656
665
|
|
|
657
666
|
## `eas build:run`
|
|
658
667
|
|
|
@@ -680,7 +689,7 @@ DESCRIPTION
|
|
|
680
689
|
run simulator/emulator builds from eas-cli
|
|
681
690
|
```
|
|
682
691
|
|
|
683
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/
|
|
692
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
684
693
|
|
|
685
694
|
## `eas build:submit`
|
|
686
695
|
|
|
@@ -732,7 +741,7 @@ DESCRIPTION
|
|
|
732
741
|
get the latest version from EAS servers
|
|
733
742
|
```
|
|
734
743
|
|
|
735
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/
|
|
744
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
736
745
|
|
|
737
746
|
## `eas build:version:set`
|
|
738
747
|
|
|
@@ -750,7 +759,7 @@ DESCRIPTION
|
|
|
750
759
|
update version of an app
|
|
751
760
|
```
|
|
752
761
|
|
|
753
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/
|
|
762
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
754
763
|
|
|
755
764
|
## `eas build:version:sync`
|
|
756
765
|
|
|
@@ -768,7 +777,7 @@ DESCRIPTION
|
|
|
768
777
|
update a version in native code with a value stored on EAS servers
|
|
769
778
|
```
|
|
770
779
|
|
|
771
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/
|
|
780
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
772
781
|
|
|
773
782
|
## `eas build:view [BUILD_ID]`
|
|
774
783
|
|
|
@@ -785,7 +794,7 @@ DESCRIPTION
|
|
|
785
794
|
view a build for your project
|
|
786
795
|
```
|
|
787
796
|
|
|
788
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/
|
|
797
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
789
798
|
|
|
790
799
|
## `eas channel:create [NAME]`
|
|
791
800
|
|
|
@@ -806,7 +815,7 @@ DESCRIPTION
|
|
|
806
815
|
create a channel
|
|
807
816
|
```
|
|
808
817
|
|
|
809
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/
|
|
818
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
810
819
|
|
|
811
820
|
## `eas channel:delete [NAME]`
|
|
812
821
|
|
|
@@ -827,7 +836,7 @@ DESCRIPTION
|
|
|
827
836
|
Delete a channel
|
|
828
837
|
```
|
|
829
838
|
|
|
830
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
839
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
831
840
|
|
|
832
841
|
## `eas channel:edit [NAME]`
|
|
833
842
|
|
|
@@ -849,7 +858,7 @@ DESCRIPTION
|
|
|
849
858
|
point a channel at a new branch
|
|
850
859
|
```
|
|
851
860
|
|
|
852
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
861
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
853
862
|
|
|
854
863
|
## `eas channel:insights`
|
|
855
864
|
|
|
@@ -873,7 +882,7 @@ DESCRIPTION
|
|
|
873
882
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
874
883
|
```
|
|
875
884
|
|
|
876
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/
|
|
885
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
877
886
|
|
|
878
887
|
## `eas channel:list`
|
|
879
888
|
|
|
@@ -893,7 +902,7 @@ DESCRIPTION
|
|
|
893
902
|
list all channels
|
|
894
903
|
```
|
|
895
904
|
|
|
896
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/
|
|
905
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
897
906
|
|
|
898
907
|
## `eas channel:pause [NAME]`
|
|
899
908
|
|
|
@@ -915,7 +924,7 @@ DESCRIPTION
|
|
|
915
924
|
pause a channel to stop it from sending updates
|
|
916
925
|
```
|
|
917
926
|
|
|
918
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/
|
|
927
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
919
928
|
|
|
920
929
|
## `eas channel:resume [NAME]`
|
|
921
930
|
|
|
@@ -937,7 +946,7 @@ DESCRIPTION
|
|
|
937
946
|
resume a channel to start sending updates
|
|
938
947
|
```
|
|
939
948
|
|
|
940
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/
|
|
949
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
941
950
|
|
|
942
951
|
## `eas channel:rollout [CHANNEL]`
|
|
943
952
|
|
|
@@ -972,7 +981,7 @@ DESCRIPTION
|
|
|
972
981
|
Roll a new branch out on a channel incrementally.
|
|
973
982
|
```
|
|
974
983
|
|
|
975
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/
|
|
984
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
976
985
|
|
|
977
986
|
## `eas channel:view [NAME]`
|
|
978
987
|
|
|
@@ -995,7 +1004,7 @@ DESCRIPTION
|
|
|
995
1004
|
view a channel
|
|
996
1005
|
```
|
|
997
1006
|
|
|
998
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1007
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
999
1008
|
|
|
1000
1009
|
## `eas config`
|
|
1001
1010
|
|
|
@@ -1016,7 +1025,7 @@ DESCRIPTION
|
|
|
1016
1025
|
display project configuration (app.json + eas.json)
|
|
1017
1026
|
```
|
|
1018
1027
|
|
|
1019
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/
|
|
1028
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/config.ts)_
|
|
1020
1029
|
|
|
1021
1030
|
## `eas credentials`
|
|
1022
1031
|
|
|
@@ -1033,7 +1042,7 @@ DESCRIPTION
|
|
|
1033
1042
|
manage credentials
|
|
1034
1043
|
```
|
|
1035
1044
|
|
|
1036
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/
|
|
1045
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1037
1046
|
|
|
1038
1047
|
## `eas credentials:configure-build`
|
|
1039
1048
|
|
|
@@ -1051,7 +1060,7 @@ DESCRIPTION
|
|
|
1051
1060
|
Set up credentials for building your project.
|
|
1052
1061
|
```
|
|
1053
1062
|
|
|
1054
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/
|
|
1063
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1055
1064
|
|
|
1056
1065
|
## `eas deploy [options]`
|
|
1057
1066
|
|
|
@@ -1080,7 +1089,7 @@ ALIASES
|
|
|
1080
1089
|
$ eas worker:deploy
|
|
1081
1090
|
```
|
|
1082
1091
|
|
|
1083
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/
|
|
1092
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1084
1093
|
|
|
1085
1094
|
## `eas deploy:alias`
|
|
1086
1095
|
|
|
@@ -1105,7 +1114,7 @@ ALIASES
|
|
|
1105
1114
|
$ eas deploy:promote
|
|
1106
1115
|
```
|
|
1107
1116
|
|
|
1108
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/
|
|
1117
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1109
1118
|
|
|
1110
1119
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1111
1120
|
|
|
@@ -1126,7 +1135,7 @@ ALIASES
|
|
|
1126
1135
|
$ eas worker:alias:delete
|
|
1127
1136
|
```
|
|
1128
1137
|
|
|
1129
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1138
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1130
1139
|
|
|
1131
1140
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1132
1141
|
|
|
@@ -1147,7 +1156,7 @@ ALIASES
|
|
|
1147
1156
|
$ eas worker:delete
|
|
1148
1157
|
```
|
|
1149
1158
|
|
|
1150
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1159
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1151
1160
|
|
|
1152
1161
|
## `eas deploy:promote`
|
|
1153
1162
|
|
|
@@ -1184,7 +1193,7 @@ DESCRIPTION
|
|
|
1184
1193
|
register new Apple Devices to use for internal distribution
|
|
1185
1194
|
```
|
|
1186
1195
|
|
|
1187
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1196
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1188
1197
|
|
|
1189
1198
|
## `eas device:delete`
|
|
1190
1199
|
|
|
@@ -1204,7 +1213,7 @@ DESCRIPTION
|
|
|
1204
1213
|
remove a registered device from your account
|
|
1205
1214
|
```
|
|
1206
1215
|
|
|
1207
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1216
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1208
1217
|
|
|
1209
1218
|
## `eas device:list`
|
|
1210
1219
|
|
|
@@ -1225,7 +1234,7 @@ DESCRIPTION
|
|
|
1225
1234
|
list all registered devices for your account
|
|
1226
1235
|
```
|
|
1227
1236
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1237
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1229
1238
|
|
|
1230
1239
|
## `eas device:rename`
|
|
1231
1240
|
|
|
@@ -1246,7 +1255,7 @@ DESCRIPTION
|
|
|
1246
1255
|
rename a registered device
|
|
1247
1256
|
```
|
|
1248
1257
|
|
|
1249
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
1258
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1250
1259
|
|
|
1251
1260
|
## `eas device:view [UDID]`
|
|
1252
1261
|
|
|
@@ -1260,7 +1269,7 @@ DESCRIPTION
|
|
|
1260
1269
|
view a device for your project
|
|
1261
1270
|
```
|
|
1262
1271
|
|
|
1263
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1272
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1264
1273
|
|
|
1265
1274
|
## `eas diagnostics`
|
|
1266
1275
|
|
|
@@ -1274,7 +1283,7 @@ DESCRIPTION
|
|
|
1274
1283
|
display environment info
|
|
1275
1284
|
```
|
|
1276
1285
|
|
|
1277
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/
|
|
1286
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1278
1287
|
|
|
1279
1288
|
## `eas env:create [ENVIRONMENT]`
|
|
1280
1289
|
|
|
@@ -1306,7 +1315,7 @@ DESCRIPTION
|
|
|
1306
1315
|
create an environment variable for the current project or account
|
|
1307
1316
|
```
|
|
1308
1317
|
|
|
1309
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1318
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1310
1319
|
|
|
1311
1320
|
## `eas env:delete [ENVIRONMENT]`
|
|
1312
1321
|
|
|
@@ -1332,7 +1341,7 @@ DESCRIPTION
|
|
|
1332
1341
|
delete an environment variable for the current project or account
|
|
1333
1342
|
```
|
|
1334
1343
|
|
|
1335
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1344
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1336
1345
|
|
|
1337
1346
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1338
1347
|
|
|
@@ -1354,7 +1363,7 @@ DESCRIPTION
|
|
|
1354
1363
|
execute a command with environment variables from the selected environment
|
|
1355
1364
|
```
|
|
1356
1365
|
|
|
1357
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/
|
|
1366
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1358
1367
|
|
|
1359
1368
|
## `eas env:get [ENVIRONMENT]`
|
|
1360
1369
|
|
|
@@ -1382,7 +1391,7 @@ DESCRIPTION
|
|
|
1382
1391
|
view an environment variable for the current project or account
|
|
1383
1392
|
```
|
|
1384
1393
|
|
|
1385
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/
|
|
1394
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1386
1395
|
|
|
1387
1396
|
## `eas env:list [ENVIRONMENT]`
|
|
1388
1397
|
|
|
@@ -1410,7 +1419,7 @@ DESCRIPTION
|
|
|
1410
1419
|
list environment variables for the current project or account
|
|
1411
1420
|
```
|
|
1412
1421
|
|
|
1413
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1422
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1414
1423
|
|
|
1415
1424
|
## `eas env:pull [ENVIRONMENT]`
|
|
1416
1425
|
|
|
@@ -1433,7 +1442,7 @@ DESCRIPTION
|
|
|
1433
1442
|
pull environment variables for the selected environment to .env file
|
|
1434
1443
|
```
|
|
1435
1444
|
|
|
1436
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
1445
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1437
1446
|
|
|
1438
1447
|
## `eas env:push [ENVIRONMENT]`
|
|
1439
1448
|
|
|
@@ -1455,7 +1464,7 @@ DESCRIPTION
|
|
|
1455
1464
|
push environment variables from .env file to the selected environment
|
|
1456
1465
|
```
|
|
1457
1466
|
|
|
1458
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1467
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1459
1468
|
|
|
1460
1469
|
## `eas env:update [ENVIRONMENT]`
|
|
1461
1470
|
|
|
@@ -1489,7 +1498,7 @@ DESCRIPTION
|
|
|
1489
1498
|
update an environment variable on the current project or account
|
|
1490
1499
|
```
|
|
1491
1500
|
|
|
1492
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/
|
|
1501
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1493
1502
|
|
|
1494
1503
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1495
1504
|
|
|
@@ -1533,7 +1542,7 @@ EXAMPLES
|
|
|
1533
1542
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1534
1543
|
```
|
|
1535
1544
|
|
|
1536
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/
|
|
1545
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1537
1546
|
|
|
1538
1547
|
## `eas fingerprint:generate`
|
|
1539
1548
|
|
|
@@ -1564,7 +1573,7 @@ EXAMPLES
|
|
|
1564
1573
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1565
1574
|
```
|
|
1566
1575
|
|
|
1567
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/
|
|
1576
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1568
1577
|
|
|
1569
1578
|
## `eas help [COMMAND]`
|
|
1570
1579
|
|
|
@@ -1643,7 +1652,7 @@ DESCRIPTION
|
|
|
1643
1652
|
connect a project to an App Store Connect app
|
|
1644
1653
|
```
|
|
1645
1654
|
|
|
1646
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/
|
|
1655
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
|
|
1647
1656
|
|
|
1648
1657
|
## `eas integrations:asc:disconnect`
|
|
1649
1658
|
|
|
@@ -1662,7 +1671,7 @@ DESCRIPTION
|
|
|
1662
1671
|
disconnect the current project from its App Store Connect app
|
|
1663
1672
|
```
|
|
1664
1673
|
|
|
1665
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/
|
|
1674
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
|
|
1666
1675
|
|
|
1667
1676
|
## `eas integrations:asc:status`
|
|
1668
1677
|
|
|
@@ -1680,7 +1689,7 @@ DESCRIPTION
|
|
|
1680
1689
|
show the App Store Connect app link status for the current project
|
|
1681
1690
|
```
|
|
1682
1691
|
|
|
1683
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/
|
|
1692
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
|
|
1684
1693
|
|
|
1685
1694
|
## `eas integrations:convex:connect`
|
|
1686
1695
|
|
|
@@ -1702,7 +1711,7 @@ DESCRIPTION
|
|
|
1702
1711
|
connect Convex to your Expo project
|
|
1703
1712
|
```
|
|
1704
1713
|
|
|
1705
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/
|
|
1714
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
|
|
1706
1715
|
|
|
1707
1716
|
## `eas integrations:convex:dashboard`
|
|
1708
1717
|
|
|
@@ -1716,7 +1725,7 @@ DESCRIPTION
|
|
|
1716
1725
|
open the Convex dashboard for the linked Convex project
|
|
1717
1726
|
```
|
|
1718
1727
|
|
|
1719
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/
|
|
1728
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
|
|
1720
1729
|
|
|
1721
1730
|
## `eas integrations:convex:project`
|
|
1722
1731
|
|
|
@@ -1730,7 +1739,7 @@ DESCRIPTION
|
|
|
1730
1739
|
display the Convex project linked to the current Expo app
|
|
1731
1740
|
```
|
|
1732
1741
|
|
|
1733
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/
|
|
1742
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
|
|
1734
1743
|
|
|
1735
1744
|
## `eas integrations:convex:project:delete`
|
|
1736
1745
|
|
|
@@ -1748,7 +1757,7 @@ DESCRIPTION
|
|
|
1748
1757
|
remove the Convex project link for the current Expo app from EAS servers
|
|
1749
1758
|
```
|
|
1750
1759
|
|
|
1751
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1760
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
|
|
1752
1761
|
|
|
1753
1762
|
## `eas integrations:convex:team`
|
|
1754
1763
|
|
|
@@ -1762,7 +1771,7 @@ DESCRIPTION
|
|
|
1762
1771
|
display Convex teams linked to the current Expo app's owner account
|
|
1763
1772
|
```
|
|
1764
1773
|
|
|
1765
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/
|
|
1774
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
|
|
1766
1775
|
|
|
1767
1776
|
## `eas integrations:convex:team:delete [CONVEX_TEAM]`
|
|
1768
1777
|
|
|
@@ -1783,7 +1792,7 @@ DESCRIPTION
|
|
|
1783
1792
|
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1784
1793
|
```
|
|
1785
1794
|
|
|
1786
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1795
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
|
|
1787
1796
|
|
|
1788
1797
|
## `eas integrations:convex:team:invite [CONVEX_TEAM]`
|
|
1789
1798
|
|
|
@@ -1803,7 +1812,7 @@ DESCRIPTION
|
|
|
1803
1812
|
send a Convex team invitation to your verified email address
|
|
1804
1813
|
```
|
|
1805
1814
|
|
|
1806
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/
|
|
1815
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
|
|
1807
1816
|
|
|
1808
1817
|
## `eas login`
|
|
1809
1818
|
|
|
@@ -1855,7 +1864,7 @@ DESCRIPTION
|
|
|
1855
1864
|
validate the local store configuration
|
|
1856
1865
|
```
|
|
1857
1866
|
|
|
1858
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/
|
|
1867
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1859
1868
|
|
|
1860
1869
|
## `eas metadata:pull`
|
|
1861
1870
|
|
|
@@ -1873,7 +1882,7 @@ DESCRIPTION
|
|
|
1873
1882
|
generate the local store configuration from the app stores
|
|
1874
1883
|
```
|
|
1875
1884
|
|
|
1876
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
1885
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1877
1886
|
|
|
1878
1887
|
## `eas metadata:push`
|
|
1879
1888
|
|
|
@@ -1891,7 +1900,7 @@ DESCRIPTION
|
|
|
1891
1900
|
sync the local store configuration to the app stores
|
|
1892
1901
|
```
|
|
1893
1902
|
|
|
1894
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1903
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1895
1904
|
|
|
1896
1905
|
## `eas new [PATH]`
|
|
1897
1906
|
|
|
@@ -1915,6 +1924,171 @@ ALIASES
|
|
|
1915
1924
|
$ eas new
|
|
1916
1925
|
```
|
|
1917
1926
|
|
|
1927
|
+
## `eas observe:events [EVENTNAME]`
|
|
1928
|
+
|
|
1929
|
+
display individual events emitted by the app via `logEvent`, filtered by the event name in the argument. With no arguments, a list of the available event names and associated event counts is returned.
|
|
1930
|
+
|
|
1931
|
+
```
|
|
1932
|
+
USAGE
|
|
1933
|
+
$ eas observe:events [EVENTNAME] [--platform android|ios] [--after <value>] [--limit <value>] [--start <value> |
|
|
1934
|
+
--days <value>] [--end <value> | ] [--app-version <value>] [--update-id <value>] [--session-id <value>]
|
|
1935
|
+
[--all-events] [--project-id <value>] [--json] [--non-interactive]
|
|
1936
|
+
|
|
1937
|
+
ARGUMENTS
|
|
1938
|
+
[EVENTNAME] Event name to filter by
|
|
1939
|
+
|
|
1940
|
+
FLAGS
|
|
1941
|
+
--after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
|
|
1942
|
+
--all-events When no event name argument is provided, list all events across all event names instead of a
|
|
1943
|
+
summary of event names + counts.
|
|
1944
|
+
--app-version=<value> Filter by app version
|
|
1945
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
1946
|
+
--end=<value> End of time range (ISO date)
|
|
1947
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1948
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
|
|
1949
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1950
|
+
--platform=<option> Filter by platform
|
|
1951
|
+
<options: android|ios>
|
|
1952
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
1953
|
+
--session-id=<value> Filter by session ID
|
|
1954
|
+
--start=<value> Start of time range (ISO date)
|
|
1955
|
+
--update-id=<value> Filter by EAS update ID
|
|
1956
|
+
|
|
1957
|
+
DESCRIPTION
|
|
1958
|
+
display individual events emitted by the app via `logEvent`, filtered by the event name in the argument. With no
|
|
1959
|
+
arguments, a list of the available event names and associated event counts is returned.
|
|
1960
|
+
```
|
|
1961
|
+
|
|
1962
|
+
_See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/events.ts)_
|
|
1963
|
+
|
|
1964
|
+
## `eas observe:metrics [METRIC]`
|
|
1965
|
+
|
|
1966
|
+
display individual performance metric samples ordered by value
|
|
1967
|
+
|
|
1968
|
+
```
|
|
1969
|
+
USAGE
|
|
1970
|
+
$ eas observe:metrics [METRIC] [--sort slowest|fastest|newest|oldest] [--platform android|ios] [--after <value>]
|
|
1971
|
+
[--limit <value>] [--start <value> | --days <value>] [--end <value> | ] [--app-version <value>] [--update-id
|
|
1972
|
+
<value>] [--project-id <value>] [--json] [--non-interactive]
|
|
1973
|
+
|
|
1974
|
+
ARGUMENTS
|
|
1975
|
+
[METRIC] (tti|ttr|cold_launch|warm_launch|bundle_load|update_download) Metric to query (e.g. tti, cold_launch)
|
|
1976
|
+
|
|
1977
|
+
FLAGS
|
|
1978
|
+
--after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
|
|
1979
|
+
--app-version=<value> Filter by app version
|
|
1980
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
1981
|
+
--end=<value> End of time range (ISO date)
|
|
1982
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1983
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
|
|
1984
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1985
|
+
--platform=<option> Filter by platform
|
|
1986
|
+
<options: android|ios>
|
|
1987
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
1988
|
+
--sort=<option> [default: oldest] Sort order for events
|
|
1989
|
+
<options: slowest|fastest|newest|oldest>
|
|
1990
|
+
--start=<value> Start of time range (ISO date)
|
|
1991
|
+
--update-id=<value> Filter by EAS update ID
|
|
1992
|
+
|
|
1993
|
+
DESCRIPTION
|
|
1994
|
+
display individual performance metric samples ordered by value
|
|
1995
|
+
```
|
|
1996
|
+
|
|
1997
|
+
_See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/metrics.ts)_
|
|
1998
|
+
|
|
1999
|
+
## `eas observe:metrics-summary`
|
|
2000
|
+
|
|
2001
|
+
display aggregated performance metric statistics grouped by app version
|
|
2002
|
+
|
|
2003
|
+
```
|
|
2004
|
+
USAGE
|
|
2005
|
+
$ eas observe:metrics-summary [--platform android|ios] [--metric
|
|
2006
|
+
tti|ttr|cold_launch|warm_launch|bundle_load|update_download...] [--stat
|
|
2007
|
+
min|median|max|average|p80|p90|p99|eventCount...] [--start <value> | --days <value>] [--end <value> | ]
|
|
2008
|
+
[--project-id <value>] [--json] [--non-interactive]
|
|
2009
|
+
|
|
2010
|
+
FLAGS
|
|
2011
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
2012
|
+
--end=<value> End of time range (ISO date)
|
|
2013
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2014
|
+
--metric=<option>... Metric name to display (can be specified multiple times).
|
|
2015
|
+
<options: tti|ttr|cold_launch|warm_launch|bundle_load|update_download>
|
|
2016
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2017
|
+
--platform=<option> Filter by platform
|
|
2018
|
+
<options: android|ios>
|
|
2019
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2020
|
+
--start=<value> Start of time range (ISO date)
|
|
2021
|
+
--stat=<option>... Statistic to display per metric (can be specified multiple times)
|
|
2022
|
+
<options: min|median|max|average|p80|p90|p99|eventCount>
|
|
2023
|
+
|
|
2024
|
+
DESCRIPTION
|
|
2025
|
+
display aggregated performance metric statistics grouped by app version
|
|
2026
|
+
```
|
|
2027
|
+
|
|
2028
|
+
_See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/metrics-summary.ts)_
|
|
2029
|
+
|
|
2030
|
+
## `eas observe:routes`
|
|
2031
|
+
|
|
2032
|
+
display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
|
|
2033
|
+
|
|
2034
|
+
```
|
|
2035
|
+
USAGE
|
|
2036
|
+
$ eas observe:routes [--platform android|ios] [--metric cold_ttr|warm_ttr|nav_tti...] [--stat
|
|
2037
|
+
median|med|p90|count|event_count|eventCount...] [--after <value>] [--limit <value>] [--start <value> | --days
|
|
2038
|
+
<value>] [--end <value> | ] [--app-version <value>] [--update-id <value>] [--build-number <value>] [--route-name
|
|
2039
|
+
<value>...] [--project-id <value>] [--json] [--non-interactive]
|
|
2040
|
+
|
|
2041
|
+
FLAGS
|
|
2042
|
+
--after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
|
|
2043
|
+
--app-version=<value> Filter by app version
|
|
2044
|
+
--build-number=<value> Filter by app build number
|
|
2045
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
2046
|
+
--end=<value> End of time range (ISO date)
|
|
2047
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2048
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 200.
|
|
2049
|
+
--metric=<option>... Navigation metric to display (can be specified multiple times). Defaults to all three.
|
|
2050
|
+
<options: cold_ttr|warm_ttr|nav_tti>
|
|
2051
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2052
|
+
--platform=<option> Filter by platform
|
|
2053
|
+
<options: android|ios>
|
|
2054
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2055
|
+
--route-name=<value>... Filter by route name (can be specified multiple times to include several routes)
|
|
2056
|
+
--start=<value> Start of time range (ISO date)
|
|
2057
|
+
--stat=<option>... Statistic to display per metric (can be specified multiple times)
|
|
2058
|
+
<options: median|med|p90|count|event_count|eventCount>
|
|
2059
|
+
--update-id=<value> Filter by EAS update ID
|
|
2060
|
+
|
|
2061
|
+
DESCRIPTION
|
|
2062
|
+
display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
|
|
2063
|
+
```
|
|
2064
|
+
|
|
2065
|
+
_See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/routes.ts)_
|
|
2066
|
+
|
|
2067
|
+
## `eas observe:versions`
|
|
2068
|
+
|
|
2069
|
+
display app versions with build and update details
|
|
2070
|
+
|
|
2071
|
+
```
|
|
2072
|
+
USAGE
|
|
2073
|
+
$ eas observe:versions [--platform android|ios] [--start <value> | --days <value>] [--end <value> | ] [--project-id
|
|
2074
|
+
<value>] [--json] [--non-interactive]
|
|
2075
|
+
|
|
2076
|
+
FLAGS
|
|
2077
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
2078
|
+
--end=<value> End of time range (ISO date)
|
|
2079
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2080
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2081
|
+
--platform=<option> Filter by platform
|
|
2082
|
+
<options: android|ios>
|
|
2083
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2084
|
+
--start=<value> Start of time range (ISO date)
|
|
2085
|
+
|
|
2086
|
+
DESCRIPTION
|
|
2087
|
+
display app versions with build and update details
|
|
2088
|
+
```
|
|
2089
|
+
|
|
2090
|
+
_See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/observe/versions.ts)_
|
|
2091
|
+
|
|
1918
2092
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1919
2093
|
|
|
1920
2094
|
continue onboarding process started on the https://expo.new website.
|
|
@@ -1943,7 +2117,7 @@ DESCRIPTION
|
|
|
1943
2117
|
open the project page in a web browser
|
|
1944
2118
|
```
|
|
1945
2119
|
|
|
1946
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/
|
|
2120
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/open.ts)_
|
|
1947
2121
|
|
|
1948
2122
|
## `eas project:info`
|
|
1949
2123
|
|
|
@@ -1957,7 +2131,7 @@ DESCRIPTION
|
|
|
1957
2131
|
information about the current project
|
|
1958
2132
|
```
|
|
1959
2133
|
|
|
1960
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/
|
|
2134
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1961
2135
|
|
|
1962
2136
|
## `eas project:init`
|
|
1963
2137
|
|
|
@@ -1980,7 +2154,7 @@ ALIASES
|
|
|
1980
2154
|
$ eas init
|
|
1981
2155
|
```
|
|
1982
2156
|
|
|
1983
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/
|
|
2157
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1984
2158
|
|
|
1985
2159
|
## `eas project:new [PATH]`
|
|
1986
2160
|
|
|
@@ -2004,7 +2178,7 @@ ALIASES
|
|
|
2004
2178
|
$ eas new
|
|
2005
2179
|
```
|
|
2006
2180
|
|
|
2007
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/
|
|
2181
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
2008
2182
|
|
|
2009
2183
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2010
2184
|
|
|
@@ -2022,7 +2196,7 @@ ALIASES
|
|
|
2022
2196
|
$ eas onboarding
|
|
2023
2197
|
```
|
|
2024
2198
|
|
|
2025
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/
|
|
2199
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
2026
2200
|
|
|
2027
2201
|
## `eas submit`
|
|
2028
2202
|
|
|
@@ -2055,7 +2229,7 @@ ALIASES
|
|
|
2055
2229
|
$ eas build:submit
|
|
2056
2230
|
```
|
|
2057
2231
|
|
|
2058
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/
|
|
2232
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/submit.ts)_
|
|
2059
2233
|
|
|
2060
2234
|
## `eas update`
|
|
2061
2235
|
|
|
@@ -2098,7 +2272,7 @@ DESCRIPTION
|
|
|
2098
2272
|
publish an update group
|
|
2099
2273
|
```
|
|
2100
2274
|
|
|
2101
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/
|
|
2275
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
2102
2276
|
|
|
2103
2277
|
## `eas update:configure`
|
|
2104
2278
|
|
|
@@ -2119,7 +2293,7 @@ DESCRIPTION
|
|
|
2119
2293
|
configure the project to support EAS Update
|
|
2120
2294
|
```
|
|
2121
2295
|
|
|
2122
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
2296
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
2123
2297
|
|
|
2124
2298
|
## `eas update:delete GROUPID`
|
|
2125
2299
|
|
|
@@ -2140,7 +2314,7 @@ DESCRIPTION
|
|
|
2140
2314
|
delete all the updates in an update group
|
|
2141
2315
|
```
|
|
2142
2316
|
|
|
2143
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
2317
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
2144
2318
|
|
|
2145
2319
|
## `eas update:edit [GROUPID]`
|
|
2146
2320
|
|
|
@@ -2165,7 +2339,37 @@ DESCRIPTION
|
|
|
2165
2339
|
edit all the updates in an update group
|
|
2166
2340
|
```
|
|
2167
2341
|
|
|
2168
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
2342
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
2343
|
+
|
|
2344
|
+
## `eas update:embedded:upload`
|
|
2345
|
+
|
|
2346
|
+
upload the JS bundle embedded in a native build so EAS Update can generate bsdiff patches against it
|
|
2347
|
+
|
|
2348
|
+
```
|
|
2349
|
+
USAGE
|
|
2350
|
+
$ eas update:embedded:upload -p ios|android --bundle <value> --manifest <value> --channel <value> [--build-id <value>]
|
|
2351
|
+
[--json] [--non-interactive]
|
|
2352
|
+
|
|
2353
|
+
FLAGS
|
|
2354
|
+
-p, --platform=<option> (required) Platform of the embedded bundle
|
|
2355
|
+
<options: ios|android>
|
|
2356
|
+
--build-id=<value> EAS Build ID that produced this binary (required when invoked from EAS Build)
|
|
2357
|
+
--bundle=<value> (required) Path to the embedded JS bundle file
|
|
2358
|
+
--channel=<value> (required) Channel name the embedded update should be associated with
|
|
2359
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2360
|
+
--manifest=<value> (required) Path to the app.manifest file embedded in the build
|
|
2361
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2362
|
+
|
|
2363
|
+
DESCRIPTION
|
|
2364
|
+
upload the JS bundle embedded in a native build so EAS Update can generate bsdiff patches against it
|
|
2365
|
+
|
|
2366
|
+
EXAMPLES
|
|
2367
|
+
$ eas update:embedded:upload --platform ios --bundle ios/build/App.app/main.jsbundle --manifest ios/build/App.app/app.manifest --channel production
|
|
2368
|
+
|
|
2369
|
+
$ eas update:embedded:upload --platform android --bundle android/app/src/main/assets/index.android.bundle --manifest android/app/src/main/assets/app.manifest --channel production --build-id <BUILD-ID>
|
|
2370
|
+
```
|
|
2371
|
+
|
|
2372
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/embedded/upload.ts)_
|
|
2169
2373
|
|
|
2170
2374
|
## `eas update:insights GROUPID`
|
|
2171
2375
|
|
|
@@ -2192,7 +2396,7 @@ DESCRIPTION
|
|
|
2192
2396
|
display launch, crash, unique-user, and size insights for an update group
|
|
2193
2397
|
```
|
|
2194
2398
|
|
|
2195
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/
|
|
2399
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
2196
2400
|
|
|
2197
2401
|
## `eas update:list`
|
|
2198
2402
|
|
|
@@ -2219,7 +2423,7 @@ DESCRIPTION
|
|
|
2219
2423
|
view the recent updates
|
|
2220
2424
|
```
|
|
2221
2425
|
|
|
2222
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/
|
|
2426
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
2223
2427
|
|
|
2224
2428
|
## `eas update:republish`
|
|
2225
2429
|
|
|
@@ -2257,7 +2461,7 @@ DESCRIPTION
|
|
|
2257
2461
|
roll back to an existing update
|
|
2258
2462
|
```
|
|
2259
2463
|
|
|
2260
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/
|
|
2464
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2261
2465
|
|
|
2262
2466
|
## `eas update:revert-update-rollout`
|
|
2263
2467
|
|
|
@@ -2285,7 +2489,7 @@ DESCRIPTION
|
|
|
2285
2489
|
revert a rollout update for a project
|
|
2286
2490
|
```
|
|
2287
2491
|
|
|
2288
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/
|
|
2492
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2289
2493
|
|
|
2290
2494
|
## `eas update:roll-back-to-embedded`
|
|
2291
2495
|
|
|
@@ -2315,7 +2519,7 @@ DESCRIPTION
|
|
|
2315
2519
|
roll back to the embedded update
|
|
2316
2520
|
```
|
|
2317
2521
|
|
|
2318
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/
|
|
2522
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2319
2523
|
|
|
2320
2524
|
## `eas update:rollback`
|
|
2321
2525
|
|
|
@@ -2336,7 +2540,7 @@ DESCRIPTION
|
|
|
2336
2540
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2337
2541
|
```
|
|
2338
2542
|
|
|
2339
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/
|
|
2543
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2340
2544
|
|
|
2341
2545
|
## `eas update:view GROUPID`
|
|
2342
2546
|
|
|
@@ -2360,7 +2564,7 @@ DESCRIPTION
|
|
|
2360
2564
|
update group details
|
|
2361
2565
|
```
|
|
2362
2566
|
|
|
2363
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/
|
|
2567
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2364
2568
|
|
|
2365
2569
|
## `eas upload`
|
|
2366
2570
|
|
|
@@ -2381,7 +2585,7 @@ DESCRIPTION
|
|
|
2381
2585
|
upload a local build and generate a sharable link
|
|
2382
2586
|
```
|
|
2383
2587
|
|
|
2384
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/
|
|
2588
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2385
2589
|
|
|
2386
2590
|
## `eas webhook:create`
|
|
2387
2591
|
|
|
@@ -2403,7 +2607,7 @@ DESCRIPTION
|
|
|
2403
2607
|
create a webhook
|
|
2404
2608
|
```
|
|
2405
2609
|
|
|
2406
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/
|
|
2610
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2407
2611
|
|
|
2408
2612
|
## `eas webhook:delete [ID]`
|
|
2409
2613
|
|
|
@@ -2423,7 +2627,7 @@ DESCRIPTION
|
|
|
2423
2627
|
delete a webhook
|
|
2424
2628
|
```
|
|
2425
2629
|
|
|
2426
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
2630
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2427
2631
|
|
|
2428
2632
|
## `eas webhook:list`
|
|
2429
2633
|
|
|
@@ -2442,7 +2646,7 @@ DESCRIPTION
|
|
|
2442
2646
|
list webhooks
|
|
2443
2647
|
```
|
|
2444
2648
|
|
|
2445
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/
|
|
2649
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2446
2650
|
|
|
2447
2651
|
## `eas webhook:update`
|
|
2448
2652
|
|
|
@@ -2465,7 +2669,7 @@ DESCRIPTION
|
|
|
2465
2669
|
update a webhook
|
|
2466
2670
|
```
|
|
2467
2671
|
|
|
2468
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/
|
|
2672
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2469
2673
|
|
|
2470
2674
|
## `eas webhook:view ID`
|
|
2471
2675
|
|
|
@@ -2482,7 +2686,7 @@ DESCRIPTION
|
|
|
2482
2686
|
view a webhook
|
|
2483
2687
|
```
|
|
2484
2688
|
|
|
2485
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/
|
|
2689
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2486
2690
|
|
|
2487
2691
|
## `eas whoami`
|
|
2488
2692
|
|
|
@@ -2603,7 +2807,7 @@ DESCRIPTION
|
|
|
2603
2807
|
to cancel.
|
|
2604
2808
|
```
|
|
2605
2809
|
|
|
2606
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
2810
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2607
2811
|
|
|
2608
2812
|
## `eas workflow:create [NAME]`
|
|
2609
2813
|
|
|
@@ -2623,7 +2827,7 @@ DESCRIPTION
|
|
|
2623
2827
|
create a new workflow configuration YAML file
|
|
2624
2828
|
```
|
|
2625
2829
|
|
|
2626
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/
|
|
2830
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2627
2831
|
|
|
2628
2832
|
## `eas workflow:logs [ID]`
|
|
2629
2833
|
|
|
@@ -2647,7 +2851,7 @@ DESCRIPTION
|
|
|
2647
2851
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2648
2852
|
```
|
|
2649
2853
|
|
|
2650
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/
|
|
2854
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2651
2855
|
|
|
2652
2856
|
## `eas workflow:run FILE`
|
|
2653
2857
|
|
|
@@ -2687,7 +2891,7 @@ FLAG DESCRIPTIONS
|
|
|
2687
2891
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2688
2892
|
```
|
|
2689
2893
|
|
|
2690
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/
|
|
2894
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2691
2895
|
|
|
2692
2896
|
## `eas workflow:runs`
|
|
2693
2897
|
|
|
@@ -2709,7 +2913,7 @@ DESCRIPTION
|
|
|
2709
2913
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2710
2914
|
```
|
|
2711
2915
|
|
|
2712
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/
|
|
2916
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2713
2917
|
|
|
2714
2918
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2715
2919
|
|
|
@@ -2737,7 +2941,7 @@ FLAG DESCRIPTIONS
|
|
|
2737
2941
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2738
2942
|
```
|
|
2739
2943
|
|
|
2740
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/
|
|
2944
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2741
2945
|
|
|
2742
2946
|
## `eas workflow:validate PATH`
|
|
2743
2947
|
|
|
@@ -2757,7 +2961,7 @@ DESCRIPTION
|
|
|
2757
2961
|
validate a workflow configuration yaml file
|
|
2758
2962
|
```
|
|
2759
2963
|
|
|
2760
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/
|
|
2964
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2761
2965
|
|
|
2762
2966
|
## `eas workflow:view [ID]`
|
|
2763
2967
|
|
|
@@ -2779,5 +2983,5 @@ DESCRIPTION
|
|
|
2779
2983
|
workflow runs for the current project.
|
|
2780
2984
|
```
|
|
2781
2985
|
|
|
2782
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/
|
|
2986
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.0.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2783
2987
|
<!-- commandsstop -->
|