eas-cli 20.0.0 → 20.1.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 +176 -106
- package/build/commands/simulator/exec.d.ts +12 -0
- package/build/commands/simulator/exec.js +42 -0
- package/build/commands/simulator/get.d.ts +2 -1
- package/build/commands/simulator/get.js +13 -7
- package/build/commands/simulator/start.d.ts +3 -0
- package/build/commands/simulator/start.js +65 -5
- package/build/commands/simulator/stop.d.ts +2 -1
- package/build/commands/simulator/stop.js +16 -9
- package/build/commands/update/embedded/delete.d.ts +15 -0
- package/build/commands/update/embedded/delete.js +55 -0
- package/build/commands/update/embedded/list.d.ts +19 -0
- package/build/commands/update/embedded/list.js +132 -0
- package/build/commands/update/embedded/view.d.ts +17 -0
- package/build/commands/update/embedded/view.js +75 -0
- package/build/graphql/generated.d.ts +365 -4
- package/build/graphql/generated.js +35 -1
- package/build/graphql/mutations/EmbeddedUpdateMutation.d.ts +5 -0
- package/build/graphql/mutations/EmbeddedUpdateMutation.js +14 -0
- package/build/graphql/queries/EmbeddedUpdateQuery.d.ts +18 -0
- package/build/graphql/queries/EmbeddedUpdateQuery.js +81 -0
- package/build/simulator/env.d.ts +7 -0
- package/build/simulator/env.js +44 -0
- package/build/simulator/utils.d.ts +3 -1
- package/build/simulator/utils.js +26 -7
- package/oclif.manifest.json +1092 -724
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -149,7 +149,10 @@ eas --help COMMAND
|
|
|
149
149
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
150
150
|
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
151
151
|
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
152
|
+
* [`eas update:embedded:delete ID`](#eas-updateembeddeddelete-id)
|
|
153
|
+
* [`eas update:embedded:list`](#eas-updateembeddedlist)
|
|
152
154
|
* [`eas update:embedded:upload`](#eas-updateembeddedupload)
|
|
155
|
+
* [`eas update:embedded:view ID`](#eas-updateembeddedview-id)
|
|
153
156
|
* [`eas update:insights GROUPID`](#eas-updateinsights-groupid)
|
|
154
157
|
* [`eas update:list`](#eas-updatelist)
|
|
155
158
|
* [`eas update:republish`](#eas-updaterepublish)
|
|
@@ -196,7 +199,7 @@ ALIASES
|
|
|
196
199
|
$ eas login
|
|
197
200
|
```
|
|
198
201
|
|
|
199
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
202
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
200
203
|
|
|
201
204
|
## `eas account:logout`
|
|
202
205
|
|
|
@@ -213,7 +216,7 @@ ALIASES
|
|
|
213
216
|
$ eas logout
|
|
214
217
|
```
|
|
215
218
|
|
|
216
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
219
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
217
220
|
|
|
218
221
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
219
222
|
|
|
@@ -235,7 +238,7 @@ DESCRIPTION
|
|
|
235
238
|
view account usage and billing for the current cycle
|
|
236
239
|
```
|
|
237
240
|
|
|
238
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
241
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
239
242
|
|
|
240
243
|
## `eas account:view`
|
|
241
244
|
|
|
@@ -252,7 +255,7 @@ ALIASES
|
|
|
252
255
|
$ eas whoami
|
|
253
256
|
```
|
|
254
257
|
|
|
255
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
258
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
256
259
|
|
|
257
260
|
## `eas analytics [STATUS]`
|
|
258
261
|
|
|
@@ -266,7 +269,7 @@ DESCRIPTION
|
|
|
266
269
|
display or change analytics settings
|
|
267
270
|
```
|
|
268
271
|
|
|
269
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
272
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
270
273
|
|
|
271
274
|
## `eas autocomplete [SHELL]`
|
|
272
275
|
|
|
@@ -318,7 +321,7 @@ DESCRIPTION
|
|
|
318
321
|
create a branch
|
|
319
322
|
```
|
|
320
323
|
|
|
321
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
322
325
|
|
|
323
326
|
## `eas branch:delete [NAME]`
|
|
324
327
|
|
|
@@ -339,7 +342,7 @@ DESCRIPTION
|
|
|
339
342
|
delete a branch
|
|
340
343
|
```
|
|
341
344
|
|
|
342
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
345
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
343
346
|
|
|
344
347
|
## `eas branch:list`
|
|
345
348
|
|
|
@@ -359,7 +362,7 @@ DESCRIPTION
|
|
|
359
362
|
list all branches
|
|
360
363
|
```
|
|
361
364
|
|
|
362
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
365
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
363
366
|
|
|
364
367
|
## `eas branch:rename`
|
|
365
368
|
|
|
@@ -379,7 +382,7 @@ DESCRIPTION
|
|
|
379
382
|
rename a branch
|
|
380
383
|
```
|
|
381
384
|
|
|
382
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
385
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
383
386
|
|
|
384
387
|
## `eas branch:view [NAME]`
|
|
385
388
|
|
|
@@ -402,7 +405,7 @@ DESCRIPTION
|
|
|
402
405
|
view a branch
|
|
403
406
|
```
|
|
404
407
|
|
|
405
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
408
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
406
409
|
|
|
407
410
|
## `eas build`
|
|
408
411
|
|
|
@@ -443,7 +446,7 @@ DESCRIPTION
|
|
|
443
446
|
start a build
|
|
444
447
|
```
|
|
445
448
|
|
|
446
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
449
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
447
450
|
|
|
448
451
|
## `eas build:cancel [BUILD_ID]`
|
|
449
452
|
|
|
@@ -463,7 +466,7 @@ DESCRIPTION
|
|
|
463
466
|
cancel a build
|
|
464
467
|
```
|
|
465
468
|
|
|
466
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
469
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
467
470
|
|
|
468
471
|
## `eas build:configure`
|
|
469
472
|
|
|
@@ -481,7 +484,7 @@ DESCRIPTION
|
|
|
481
484
|
configure the project to support EAS Build
|
|
482
485
|
```
|
|
483
486
|
|
|
484
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
487
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
485
488
|
|
|
486
489
|
## `eas build:delete [BUILD_ID]`
|
|
487
490
|
|
|
@@ -501,7 +504,7 @@ DESCRIPTION
|
|
|
501
504
|
delete a build
|
|
502
505
|
```
|
|
503
506
|
|
|
504
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
507
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
505
508
|
|
|
506
509
|
## `eas build:dev`
|
|
507
510
|
|
|
@@ -526,7 +529,7 @@ DESCRIPTION
|
|
|
526
529
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
527
530
|
```
|
|
528
531
|
|
|
529
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
532
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
530
533
|
|
|
531
534
|
## `eas build:download`
|
|
532
535
|
|
|
@@ -553,7 +556,7 @@ DESCRIPTION
|
|
|
553
556
|
download a simulator/emulator build by build ID or fingerprint hash
|
|
554
557
|
```
|
|
555
558
|
|
|
556
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
559
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
557
560
|
|
|
558
561
|
## `eas build:inspect`
|
|
559
562
|
|
|
@@ -591,7 +594,7 @@ DESCRIPTION
|
|
|
591
594
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
592
595
|
```
|
|
593
596
|
|
|
594
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
597
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
595
598
|
|
|
596
599
|
## `eas build:list`
|
|
597
600
|
|
|
@@ -631,7 +634,7 @@ DESCRIPTION
|
|
|
631
634
|
list all builds for your project
|
|
632
635
|
```
|
|
633
636
|
|
|
634
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
637
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
635
638
|
|
|
636
639
|
## `eas build:resign`
|
|
637
640
|
|
|
@@ -661,7 +664,7 @@ DESCRIPTION
|
|
|
661
664
|
re-sign a build archive
|
|
662
665
|
```
|
|
663
666
|
|
|
664
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
667
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
665
668
|
|
|
666
669
|
## `eas build:run`
|
|
667
670
|
|
|
@@ -689,7 +692,7 @@ DESCRIPTION
|
|
|
689
692
|
run simulator/emulator builds from eas-cli
|
|
690
693
|
```
|
|
691
694
|
|
|
692
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
695
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
693
696
|
|
|
694
697
|
## `eas build:submit`
|
|
695
698
|
|
|
@@ -741,7 +744,7 @@ DESCRIPTION
|
|
|
741
744
|
get the latest version from EAS servers
|
|
742
745
|
```
|
|
743
746
|
|
|
744
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
747
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
745
748
|
|
|
746
749
|
## `eas build:version:set`
|
|
747
750
|
|
|
@@ -759,7 +762,7 @@ DESCRIPTION
|
|
|
759
762
|
update version of an app
|
|
760
763
|
```
|
|
761
764
|
|
|
762
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
765
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
763
766
|
|
|
764
767
|
## `eas build:version:sync`
|
|
765
768
|
|
|
@@ -777,7 +780,7 @@ DESCRIPTION
|
|
|
777
780
|
update a version in native code with a value stored on EAS servers
|
|
778
781
|
```
|
|
779
782
|
|
|
780
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
783
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
781
784
|
|
|
782
785
|
## `eas build:view [BUILD_ID]`
|
|
783
786
|
|
|
@@ -794,7 +797,7 @@ DESCRIPTION
|
|
|
794
797
|
view a build for your project
|
|
795
798
|
```
|
|
796
799
|
|
|
797
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
800
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
798
801
|
|
|
799
802
|
## `eas channel:create [NAME]`
|
|
800
803
|
|
|
@@ -815,7 +818,7 @@ DESCRIPTION
|
|
|
815
818
|
create a channel
|
|
816
819
|
```
|
|
817
820
|
|
|
818
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
821
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
819
822
|
|
|
820
823
|
## `eas channel:delete [NAME]`
|
|
821
824
|
|
|
@@ -836,7 +839,7 @@ DESCRIPTION
|
|
|
836
839
|
Delete a channel
|
|
837
840
|
```
|
|
838
841
|
|
|
839
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
842
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
840
843
|
|
|
841
844
|
## `eas channel:edit [NAME]`
|
|
842
845
|
|
|
@@ -858,7 +861,7 @@ DESCRIPTION
|
|
|
858
861
|
point a channel at a new branch
|
|
859
862
|
```
|
|
860
863
|
|
|
861
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
864
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
862
865
|
|
|
863
866
|
## `eas channel:insights`
|
|
864
867
|
|
|
@@ -882,7 +885,7 @@ DESCRIPTION
|
|
|
882
885
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
883
886
|
```
|
|
884
887
|
|
|
885
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
888
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
886
889
|
|
|
887
890
|
## `eas channel:list`
|
|
888
891
|
|
|
@@ -902,7 +905,7 @@ DESCRIPTION
|
|
|
902
905
|
list all channels
|
|
903
906
|
```
|
|
904
907
|
|
|
905
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
908
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
906
909
|
|
|
907
910
|
## `eas channel:pause [NAME]`
|
|
908
911
|
|
|
@@ -924,7 +927,7 @@ DESCRIPTION
|
|
|
924
927
|
pause a channel to stop it from sending updates
|
|
925
928
|
```
|
|
926
929
|
|
|
927
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
930
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
928
931
|
|
|
929
932
|
## `eas channel:resume [NAME]`
|
|
930
933
|
|
|
@@ -946,7 +949,7 @@ DESCRIPTION
|
|
|
946
949
|
resume a channel to start sending updates
|
|
947
950
|
```
|
|
948
951
|
|
|
949
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
952
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
950
953
|
|
|
951
954
|
## `eas channel:rollout [CHANNEL]`
|
|
952
955
|
|
|
@@ -981,7 +984,7 @@ DESCRIPTION
|
|
|
981
984
|
Roll a new branch out on a channel incrementally.
|
|
982
985
|
```
|
|
983
986
|
|
|
984
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
987
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
985
988
|
|
|
986
989
|
## `eas channel:view [NAME]`
|
|
987
990
|
|
|
@@ -1004,7 +1007,7 @@ DESCRIPTION
|
|
|
1004
1007
|
view a channel
|
|
1005
1008
|
```
|
|
1006
1009
|
|
|
1007
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1010
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
1008
1011
|
|
|
1009
1012
|
## `eas config`
|
|
1010
1013
|
|
|
@@ -1025,7 +1028,7 @@ DESCRIPTION
|
|
|
1025
1028
|
display project configuration (app.json + eas.json)
|
|
1026
1029
|
```
|
|
1027
1030
|
|
|
1028
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1031
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/config.ts)_
|
|
1029
1032
|
|
|
1030
1033
|
## `eas credentials`
|
|
1031
1034
|
|
|
@@ -1042,7 +1045,7 @@ DESCRIPTION
|
|
|
1042
1045
|
manage credentials
|
|
1043
1046
|
```
|
|
1044
1047
|
|
|
1045
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1048
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1046
1049
|
|
|
1047
1050
|
## `eas credentials:configure-build`
|
|
1048
1051
|
|
|
@@ -1060,7 +1063,7 @@ DESCRIPTION
|
|
|
1060
1063
|
Set up credentials for building your project.
|
|
1061
1064
|
```
|
|
1062
1065
|
|
|
1063
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1066
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1064
1067
|
|
|
1065
1068
|
## `eas deploy [options]`
|
|
1066
1069
|
|
|
@@ -1089,7 +1092,7 @@ ALIASES
|
|
|
1089
1092
|
$ eas worker:deploy
|
|
1090
1093
|
```
|
|
1091
1094
|
|
|
1092
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1095
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1093
1096
|
|
|
1094
1097
|
## `eas deploy:alias`
|
|
1095
1098
|
|
|
@@ -1114,7 +1117,7 @@ ALIASES
|
|
|
1114
1117
|
$ eas deploy:promote
|
|
1115
1118
|
```
|
|
1116
1119
|
|
|
1117
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1120
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1118
1121
|
|
|
1119
1122
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1120
1123
|
|
|
@@ -1135,7 +1138,7 @@ ALIASES
|
|
|
1135
1138
|
$ eas worker:alias:delete
|
|
1136
1139
|
```
|
|
1137
1140
|
|
|
1138
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1141
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1139
1142
|
|
|
1140
1143
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1141
1144
|
|
|
@@ -1156,7 +1159,7 @@ ALIASES
|
|
|
1156
1159
|
$ eas worker:delete
|
|
1157
1160
|
```
|
|
1158
1161
|
|
|
1159
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1162
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1160
1163
|
|
|
1161
1164
|
## `eas deploy:promote`
|
|
1162
1165
|
|
|
@@ -1193,7 +1196,7 @@ DESCRIPTION
|
|
|
1193
1196
|
register new Apple Devices to use for internal distribution
|
|
1194
1197
|
```
|
|
1195
1198
|
|
|
1196
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1199
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1197
1200
|
|
|
1198
1201
|
## `eas device:delete`
|
|
1199
1202
|
|
|
@@ -1213,7 +1216,7 @@ DESCRIPTION
|
|
|
1213
1216
|
remove a registered device from your account
|
|
1214
1217
|
```
|
|
1215
1218
|
|
|
1216
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1219
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1217
1220
|
|
|
1218
1221
|
## `eas device:list`
|
|
1219
1222
|
|
|
@@ -1234,7 +1237,7 @@ DESCRIPTION
|
|
|
1234
1237
|
list all registered devices for your account
|
|
1235
1238
|
```
|
|
1236
1239
|
|
|
1237
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1240
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1238
1241
|
|
|
1239
1242
|
## `eas device:rename`
|
|
1240
1243
|
|
|
@@ -1255,7 +1258,7 @@ DESCRIPTION
|
|
|
1255
1258
|
rename a registered device
|
|
1256
1259
|
```
|
|
1257
1260
|
|
|
1258
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1261
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1259
1262
|
|
|
1260
1263
|
## `eas device:view [UDID]`
|
|
1261
1264
|
|
|
@@ -1269,7 +1272,7 @@ DESCRIPTION
|
|
|
1269
1272
|
view a device for your project
|
|
1270
1273
|
```
|
|
1271
1274
|
|
|
1272
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1275
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1273
1276
|
|
|
1274
1277
|
## `eas diagnostics`
|
|
1275
1278
|
|
|
@@ -1283,7 +1286,7 @@ DESCRIPTION
|
|
|
1283
1286
|
display environment info
|
|
1284
1287
|
```
|
|
1285
1288
|
|
|
1286
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1289
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1287
1290
|
|
|
1288
1291
|
## `eas env:create [ENVIRONMENT]`
|
|
1289
1292
|
|
|
@@ -1315,7 +1318,7 @@ DESCRIPTION
|
|
|
1315
1318
|
create an environment variable for the current project or account
|
|
1316
1319
|
```
|
|
1317
1320
|
|
|
1318
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1321
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1319
1322
|
|
|
1320
1323
|
## `eas env:delete [ENVIRONMENT]`
|
|
1321
1324
|
|
|
@@ -1341,7 +1344,7 @@ DESCRIPTION
|
|
|
1341
1344
|
delete an environment variable for the current project or account
|
|
1342
1345
|
```
|
|
1343
1346
|
|
|
1344
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1347
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1345
1348
|
|
|
1346
1349
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1347
1350
|
|
|
@@ -1363,7 +1366,7 @@ DESCRIPTION
|
|
|
1363
1366
|
execute a command with environment variables from the selected environment
|
|
1364
1367
|
```
|
|
1365
1368
|
|
|
1366
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1369
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1367
1370
|
|
|
1368
1371
|
## `eas env:get [ENVIRONMENT]`
|
|
1369
1372
|
|
|
@@ -1391,7 +1394,7 @@ DESCRIPTION
|
|
|
1391
1394
|
view an environment variable for the current project or account
|
|
1392
1395
|
```
|
|
1393
1396
|
|
|
1394
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1397
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1395
1398
|
|
|
1396
1399
|
## `eas env:list [ENVIRONMENT]`
|
|
1397
1400
|
|
|
@@ -1419,7 +1422,7 @@ DESCRIPTION
|
|
|
1419
1422
|
list environment variables for the current project or account
|
|
1420
1423
|
```
|
|
1421
1424
|
|
|
1422
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1425
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1423
1426
|
|
|
1424
1427
|
## `eas env:pull [ENVIRONMENT]`
|
|
1425
1428
|
|
|
@@ -1442,7 +1445,7 @@ DESCRIPTION
|
|
|
1442
1445
|
pull environment variables for the selected environment to .env file
|
|
1443
1446
|
```
|
|
1444
1447
|
|
|
1445
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1448
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1446
1449
|
|
|
1447
1450
|
## `eas env:push [ENVIRONMENT]`
|
|
1448
1451
|
|
|
@@ -1464,7 +1467,7 @@ DESCRIPTION
|
|
|
1464
1467
|
push environment variables from .env file to the selected environment
|
|
1465
1468
|
```
|
|
1466
1469
|
|
|
1467
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1470
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1468
1471
|
|
|
1469
1472
|
## `eas env:update [ENVIRONMENT]`
|
|
1470
1473
|
|
|
@@ -1498,7 +1501,7 @@ DESCRIPTION
|
|
|
1498
1501
|
update an environment variable on the current project or account
|
|
1499
1502
|
```
|
|
1500
1503
|
|
|
1501
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1504
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1502
1505
|
|
|
1503
1506
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1504
1507
|
|
|
@@ -1542,7 +1545,7 @@ EXAMPLES
|
|
|
1542
1545
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1543
1546
|
```
|
|
1544
1547
|
|
|
1545
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1548
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1546
1549
|
|
|
1547
1550
|
## `eas fingerprint:generate`
|
|
1548
1551
|
|
|
@@ -1573,7 +1576,7 @@ EXAMPLES
|
|
|
1573
1576
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1574
1577
|
```
|
|
1575
1578
|
|
|
1576
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1579
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1577
1580
|
|
|
1578
1581
|
## `eas help [COMMAND]`
|
|
1579
1582
|
|
|
@@ -1652,7 +1655,7 @@ DESCRIPTION
|
|
|
1652
1655
|
connect a project to an App Store Connect app
|
|
1653
1656
|
```
|
|
1654
1657
|
|
|
1655
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1658
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
|
|
1656
1659
|
|
|
1657
1660
|
## `eas integrations:asc:disconnect`
|
|
1658
1661
|
|
|
@@ -1671,7 +1674,7 @@ DESCRIPTION
|
|
|
1671
1674
|
disconnect the current project from its App Store Connect app
|
|
1672
1675
|
```
|
|
1673
1676
|
|
|
1674
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1677
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
|
|
1675
1678
|
|
|
1676
1679
|
## `eas integrations:asc:status`
|
|
1677
1680
|
|
|
@@ -1689,7 +1692,7 @@ DESCRIPTION
|
|
|
1689
1692
|
show the App Store Connect app link status for the current project
|
|
1690
1693
|
```
|
|
1691
1694
|
|
|
1692
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1695
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
|
|
1693
1696
|
|
|
1694
1697
|
## `eas integrations:convex:connect`
|
|
1695
1698
|
|
|
@@ -1711,7 +1714,7 @@ DESCRIPTION
|
|
|
1711
1714
|
connect Convex to your Expo project
|
|
1712
1715
|
```
|
|
1713
1716
|
|
|
1714
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1717
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
|
|
1715
1718
|
|
|
1716
1719
|
## `eas integrations:convex:dashboard`
|
|
1717
1720
|
|
|
@@ -1725,7 +1728,7 @@ DESCRIPTION
|
|
|
1725
1728
|
open the Convex dashboard for the linked Convex project
|
|
1726
1729
|
```
|
|
1727
1730
|
|
|
1728
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1731
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
|
|
1729
1732
|
|
|
1730
1733
|
## `eas integrations:convex:project`
|
|
1731
1734
|
|
|
@@ -1739,7 +1742,7 @@ DESCRIPTION
|
|
|
1739
1742
|
display the Convex project linked to the current Expo app
|
|
1740
1743
|
```
|
|
1741
1744
|
|
|
1742
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1745
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
|
|
1743
1746
|
|
|
1744
1747
|
## `eas integrations:convex:project:delete`
|
|
1745
1748
|
|
|
@@ -1757,7 +1760,7 @@ DESCRIPTION
|
|
|
1757
1760
|
remove the Convex project link for the current Expo app from EAS servers
|
|
1758
1761
|
```
|
|
1759
1762
|
|
|
1760
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1763
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
|
|
1761
1764
|
|
|
1762
1765
|
## `eas integrations:convex:team`
|
|
1763
1766
|
|
|
@@ -1771,7 +1774,7 @@ DESCRIPTION
|
|
|
1771
1774
|
display Convex teams linked to the current Expo app's owner account
|
|
1772
1775
|
```
|
|
1773
1776
|
|
|
1774
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1777
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
|
|
1775
1778
|
|
|
1776
1779
|
## `eas integrations:convex:team:delete [CONVEX_TEAM]`
|
|
1777
1780
|
|
|
@@ -1792,7 +1795,7 @@ DESCRIPTION
|
|
|
1792
1795
|
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1793
1796
|
```
|
|
1794
1797
|
|
|
1795
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1798
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
|
|
1796
1799
|
|
|
1797
1800
|
## `eas integrations:convex:team:invite [CONVEX_TEAM]`
|
|
1798
1801
|
|
|
@@ -1812,7 +1815,7 @@ DESCRIPTION
|
|
|
1812
1815
|
send a Convex team invitation to your verified email address
|
|
1813
1816
|
```
|
|
1814
1817
|
|
|
1815
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1818
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
|
|
1816
1819
|
|
|
1817
1820
|
## `eas login`
|
|
1818
1821
|
|
|
@@ -1864,7 +1867,7 @@ DESCRIPTION
|
|
|
1864
1867
|
validate the local store configuration
|
|
1865
1868
|
```
|
|
1866
1869
|
|
|
1867
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1870
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1868
1871
|
|
|
1869
1872
|
## `eas metadata:pull`
|
|
1870
1873
|
|
|
@@ -1882,7 +1885,7 @@ DESCRIPTION
|
|
|
1882
1885
|
generate the local store configuration from the app stores
|
|
1883
1886
|
```
|
|
1884
1887
|
|
|
1885
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1888
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1886
1889
|
|
|
1887
1890
|
## `eas metadata:push`
|
|
1888
1891
|
|
|
@@ -1900,7 +1903,7 @@ DESCRIPTION
|
|
|
1900
1903
|
sync the local store configuration to the app stores
|
|
1901
1904
|
```
|
|
1902
1905
|
|
|
1903
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1906
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1904
1907
|
|
|
1905
1908
|
## `eas new [PATH]`
|
|
1906
1909
|
|
|
@@ -1959,7 +1962,7 @@ DESCRIPTION
|
|
|
1959
1962
|
arguments, a list of the available event names and associated event counts is returned.
|
|
1960
1963
|
```
|
|
1961
1964
|
|
|
1962
|
-
_See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1965
|
+
_See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/observe/events.ts)_
|
|
1963
1966
|
|
|
1964
1967
|
## `eas observe:metrics [METRIC]`
|
|
1965
1968
|
|
|
@@ -1994,7 +1997,7 @@ DESCRIPTION
|
|
|
1994
1997
|
display individual performance metric samples ordered by value
|
|
1995
1998
|
```
|
|
1996
1999
|
|
|
1997
|
-
_See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2000
|
+
_See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/observe/metrics.ts)_
|
|
1998
2001
|
|
|
1999
2002
|
## `eas observe:metrics-summary`
|
|
2000
2003
|
|
|
@@ -2025,7 +2028,7 @@ DESCRIPTION
|
|
|
2025
2028
|
display aggregated performance metric statistics grouped by app version
|
|
2026
2029
|
```
|
|
2027
2030
|
|
|
2028
|
-
_See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2031
|
+
_See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/observe/metrics-summary.ts)_
|
|
2029
2032
|
|
|
2030
2033
|
## `eas observe:routes`
|
|
2031
2034
|
|
|
@@ -2062,7 +2065,7 @@ DESCRIPTION
|
|
|
2062
2065
|
display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
|
|
2063
2066
|
```
|
|
2064
2067
|
|
|
2065
|
-
_See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2068
|
+
_See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/observe/routes.ts)_
|
|
2066
2069
|
|
|
2067
2070
|
## `eas observe:versions`
|
|
2068
2071
|
|
|
@@ -2087,7 +2090,7 @@ DESCRIPTION
|
|
|
2087
2090
|
display app versions with build and update details
|
|
2088
2091
|
```
|
|
2089
2092
|
|
|
2090
|
-
_See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2093
|
+
_See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/observe/versions.ts)_
|
|
2091
2094
|
|
|
2092
2095
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2093
2096
|
|
|
@@ -2117,7 +2120,7 @@ DESCRIPTION
|
|
|
2117
2120
|
open the project page in a web browser
|
|
2118
2121
|
```
|
|
2119
2122
|
|
|
2120
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2123
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/open.ts)_
|
|
2121
2124
|
|
|
2122
2125
|
## `eas project:info`
|
|
2123
2126
|
|
|
@@ -2131,7 +2134,7 @@ DESCRIPTION
|
|
|
2131
2134
|
information about the current project
|
|
2132
2135
|
```
|
|
2133
2136
|
|
|
2134
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2137
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
2135
2138
|
|
|
2136
2139
|
## `eas project:init`
|
|
2137
2140
|
|
|
@@ -2154,7 +2157,7 @@ ALIASES
|
|
|
2154
2157
|
$ eas init
|
|
2155
2158
|
```
|
|
2156
2159
|
|
|
2157
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2160
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
2158
2161
|
|
|
2159
2162
|
## `eas project:new [PATH]`
|
|
2160
2163
|
|
|
@@ -2178,7 +2181,7 @@ ALIASES
|
|
|
2178
2181
|
$ eas new
|
|
2179
2182
|
```
|
|
2180
2183
|
|
|
2181
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2184
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
2182
2185
|
|
|
2183
2186
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2184
2187
|
|
|
@@ -2196,7 +2199,7 @@ ALIASES
|
|
|
2196
2199
|
$ eas onboarding
|
|
2197
2200
|
```
|
|
2198
2201
|
|
|
2199
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2202
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
2200
2203
|
|
|
2201
2204
|
## `eas submit`
|
|
2202
2205
|
|
|
@@ -2229,7 +2232,7 @@ ALIASES
|
|
|
2229
2232
|
$ eas build:submit
|
|
2230
2233
|
```
|
|
2231
2234
|
|
|
2232
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2235
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/submit.ts)_
|
|
2233
2236
|
|
|
2234
2237
|
## `eas update`
|
|
2235
2238
|
|
|
@@ -2272,7 +2275,7 @@ DESCRIPTION
|
|
|
2272
2275
|
publish an update group
|
|
2273
2276
|
```
|
|
2274
2277
|
|
|
2275
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2278
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
2276
2279
|
|
|
2277
2280
|
## `eas update:configure`
|
|
2278
2281
|
|
|
@@ -2293,7 +2296,7 @@ DESCRIPTION
|
|
|
2293
2296
|
configure the project to support EAS Update
|
|
2294
2297
|
```
|
|
2295
2298
|
|
|
2296
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2299
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
2297
2300
|
|
|
2298
2301
|
## `eas update:delete GROUPID`
|
|
2299
2302
|
|
|
@@ -2314,7 +2317,7 @@ DESCRIPTION
|
|
|
2314
2317
|
delete all the updates in an update group
|
|
2315
2318
|
```
|
|
2316
2319
|
|
|
2317
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2320
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
2318
2321
|
|
|
2319
2322
|
## `eas update:edit [GROUPID]`
|
|
2320
2323
|
|
|
@@ -2339,7 +2342,54 @@ DESCRIPTION
|
|
|
2339
2342
|
edit all the updates in an update group
|
|
2340
2343
|
```
|
|
2341
2344
|
|
|
2342
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2345
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
2346
|
+
|
|
2347
|
+
## `eas update:embedded:delete ID`
|
|
2348
|
+
|
|
2349
|
+
delete an embedded update registered with EAS Update
|
|
2350
|
+
|
|
2351
|
+
```
|
|
2352
|
+
USAGE
|
|
2353
|
+
$ eas update:embedded:delete ID [--json] [--non-interactive]
|
|
2354
|
+
|
|
2355
|
+
ARGUMENTS
|
|
2356
|
+
ID The ID of the embedded update (manifest UUID from app.manifest).
|
|
2357
|
+
|
|
2358
|
+
FLAGS
|
|
2359
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2360
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2361
|
+
|
|
2362
|
+
DESCRIPTION
|
|
2363
|
+
delete an embedded update registered with EAS Update
|
|
2364
|
+
```
|
|
2365
|
+
|
|
2366
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/embedded/delete.ts)_
|
|
2367
|
+
|
|
2368
|
+
## `eas update:embedded:list`
|
|
2369
|
+
|
|
2370
|
+
list embedded updates registered with EAS Update for this project
|
|
2371
|
+
|
|
2372
|
+
```
|
|
2373
|
+
USAGE
|
|
2374
|
+
$ eas update:embedded:list [-p ios|android] [--runtime-version <value>] [--channel <value>] [--limit <value>]
|
|
2375
|
+
[--after-cursor <value>] [--json] [--non-interactive]
|
|
2376
|
+
|
|
2377
|
+
FLAGS
|
|
2378
|
+
-p, --platform=<option> Filter by platform
|
|
2379
|
+
<options: ios|android>
|
|
2380
|
+
--after-cursor=<value> Return items after this cursor (for pagination)
|
|
2381
|
+
--channel=<value> Filter by channel name (pass "all" to skip the channel prompt)
|
|
2382
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
2383
|
+
--non-interactive.
|
|
2384
|
+
--limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
|
|
2385
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2386
|
+
--runtime-version=<value> Filter by runtime version
|
|
2387
|
+
|
|
2388
|
+
DESCRIPTION
|
|
2389
|
+
list embedded updates registered with EAS Update for this project
|
|
2390
|
+
```
|
|
2391
|
+
|
|
2392
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/embedded/list.ts)_
|
|
2343
2393
|
|
|
2344
2394
|
## `eas update:embedded:upload`
|
|
2345
2395
|
|
|
@@ -2369,7 +2419,27 @@ EXAMPLES
|
|
|
2369
2419
|
$ 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
2420
|
```
|
|
2371
2421
|
|
|
2372
|
-
_See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2422
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/embedded/upload.ts)_
|
|
2423
|
+
|
|
2424
|
+
## `eas update:embedded:view ID`
|
|
2425
|
+
|
|
2426
|
+
view details of an embedded update registered with EAS Update
|
|
2427
|
+
|
|
2428
|
+
```
|
|
2429
|
+
USAGE
|
|
2430
|
+
$ eas update:embedded:view ID [--json]
|
|
2431
|
+
|
|
2432
|
+
ARGUMENTS
|
|
2433
|
+
ID The ID of the embedded update (manifest UUID from app.manifest).
|
|
2434
|
+
|
|
2435
|
+
FLAGS
|
|
2436
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2437
|
+
|
|
2438
|
+
DESCRIPTION
|
|
2439
|
+
view details of an embedded update registered with EAS Update
|
|
2440
|
+
```
|
|
2441
|
+
|
|
2442
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/embedded/view.ts)_
|
|
2373
2443
|
|
|
2374
2444
|
## `eas update:insights GROUPID`
|
|
2375
2445
|
|
|
@@ -2396,7 +2466,7 @@ DESCRIPTION
|
|
|
2396
2466
|
display launch, crash, unique-user, and size insights for an update group
|
|
2397
2467
|
```
|
|
2398
2468
|
|
|
2399
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2469
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
2400
2470
|
|
|
2401
2471
|
## `eas update:list`
|
|
2402
2472
|
|
|
@@ -2423,7 +2493,7 @@ DESCRIPTION
|
|
|
2423
2493
|
view the recent updates
|
|
2424
2494
|
```
|
|
2425
2495
|
|
|
2426
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2496
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
2427
2497
|
|
|
2428
2498
|
## `eas update:republish`
|
|
2429
2499
|
|
|
@@ -2461,7 +2531,7 @@ DESCRIPTION
|
|
|
2461
2531
|
roll back to an existing update
|
|
2462
2532
|
```
|
|
2463
2533
|
|
|
2464
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2534
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2465
2535
|
|
|
2466
2536
|
## `eas update:revert-update-rollout`
|
|
2467
2537
|
|
|
@@ -2489,7 +2559,7 @@ DESCRIPTION
|
|
|
2489
2559
|
revert a rollout update for a project
|
|
2490
2560
|
```
|
|
2491
2561
|
|
|
2492
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2562
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2493
2563
|
|
|
2494
2564
|
## `eas update:roll-back-to-embedded`
|
|
2495
2565
|
|
|
@@ -2519,7 +2589,7 @@ DESCRIPTION
|
|
|
2519
2589
|
roll back to the embedded update
|
|
2520
2590
|
```
|
|
2521
2591
|
|
|
2522
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2592
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2523
2593
|
|
|
2524
2594
|
## `eas update:rollback`
|
|
2525
2595
|
|
|
@@ -2540,7 +2610,7 @@ DESCRIPTION
|
|
|
2540
2610
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2541
2611
|
```
|
|
2542
2612
|
|
|
2543
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2613
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2544
2614
|
|
|
2545
2615
|
## `eas update:view GROUPID`
|
|
2546
2616
|
|
|
@@ -2564,7 +2634,7 @@ DESCRIPTION
|
|
|
2564
2634
|
update group details
|
|
2565
2635
|
```
|
|
2566
2636
|
|
|
2567
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2637
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2568
2638
|
|
|
2569
2639
|
## `eas upload`
|
|
2570
2640
|
|
|
@@ -2585,7 +2655,7 @@ DESCRIPTION
|
|
|
2585
2655
|
upload a local build and generate a sharable link
|
|
2586
2656
|
```
|
|
2587
2657
|
|
|
2588
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2658
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2589
2659
|
|
|
2590
2660
|
## `eas webhook:create`
|
|
2591
2661
|
|
|
@@ -2607,7 +2677,7 @@ DESCRIPTION
|
|
|
2607
2677
|
create a webhook
|
|
2608
2678
|
```
|
|
2609
2679
|
|
|
2610
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2680
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2611
2681
|
|
|
2612
2682
|
## `eas webhook:delete [ID]`
|
|
2613
2683
|
|
|
@@ -2627,7 +2697,7 @@ DESCRIPTION
|
|
|
2627
2697
|
delete a webhook
|
|
2628
2698
|
```
|
|
2629
2699
|
|
|
2630
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2700
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2631
2701
|
|
|
2632
2702
|
## `eas webhook:list`
|
|
2633
2703
|
|
|
@@ -2646,7 +2716,7 @@ DESCRIPTION
|
|
|
2646
2716
|
list webhooks
|
|
2647
2717
|
```
|
|
2648
2718
|
|
|
2649
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2719
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2650
2720
|
|
|
2651
2721
|
## `eas webhook:update`
|
|
2652
2722
|
|
|
@@ -2669,7 +2739,7 @@ DESCRIPTION
|
|
|
2669
2739
|
update a webhook
|
|
2670
2740
|
```
|
|
2671
2741
|
|
|
2672
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2742
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2673
2743
|
|
|
2674
2744
|
## `eas webhook:view ID`
|
|
2675
2745
|
|
|
@@ -2686,7 +2756,7 @@ DESCRIPTION
|
|
|
2686
2756
|
view a webhook
|
|
2687
2757
|
```
|
|
2688
2758
|
|
|
2689
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2759
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2690
2760
|
|
|
2691
2761
|
## `eas whoami`
|
|
2692
2762
|
|
|
@@ -2807,7 +2877,7 @@ DESCRIPTION
|
|
|
2807
2877
|
to cancel.
|
|
2808
2878
|
```
|
|
2809
2879
|
|
|
2810
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2880
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2811
2881
|
|
|
2812
2882
|
## `eas workflow:create [NAME]`
|
|
2813
2883
|
|
|
@@ -2827,7 +2897,7 @@ DESCRIPTION
|
|
|
2827
2897
|
create a new workflow configuration YAML file
|
|
2828
2898
|
```
|
|
2829
2899
|
|
|
2830
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2900
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2831
2901
|
|
|
2832
2902
|
## `eas workflow:logs [ID]`
|
|
2833
2903
|
|
|
@@ -2851,7 +2921,7 @@ DESCRIPTION
|
|
|
2851
2921
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2852
2922
|
```
|
|
2853
2923
|
|
|
2854
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2924
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2855
2925
|
|
|
2856
2926
|
## `eas workflow:run FILE`
|
|
2857
2927
|
|
|
@@ -2891,7 +2961,7 @@ FLAG DESCRIPTIONS
|
|
|
2891
2961
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2892
2962
|
```
|
|
2893
2963
|
|
|
2894
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2964
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2895
2965
|
|
|
2896
2966
|
## `eas workflow:runs`
|
|
2897
2967
|
|
|
@@ -2913,7 +2983,7 @@ DESCRIPTION
|
|
|
2913
2983
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2914
2984
|
```
|
|
2915
2985
|
|
|
2916
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2986
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2917
2987
|
|
|
2918
2988
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2919
2989
|
|
|
@@ -2941,7 +3011,7 @@ FLAG DESCRIPTIONS
|
|
|
2941
3011
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2942
3012
|
```
|
|
2943
3013
|
|
|
2944
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3014
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2945
3015
|
|
|
2946
3016
|
## `eas workflow:validate PATH`
|
|
2947
3017
|
|
|
@@ -2961,7 +3031,7 @@ DESCRIPTION
|
|
|
2961
3031
|
validate a workflow configuration yaml file
|
|
2962
3032
|
```
|
|
2963
3033
|
|
|
2964
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3034
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2965
3035
|
|
|
2966
3036
|
## `eas workflow:view [ID]`
|
|
2967
3037
|
|
|
@@ -2983,5 +3053,5 @@ DESCRIPTION
|
|
|
2983
3053
|
workflow runs for the current project.
|
|
2984
3054
|
```
|
|
2985
3055
|
|
|
2986
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3056
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.1.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2987
3057
|
<!-- commandsstop -->
|