eas-cli 20.3.0 → 20.4.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 +136 -113
- package/build/commandUtils/new/templates/AGENTS.md +25 -146
- package/build/commandUtils/new/templates/CLAUDE.md +1 -9
- package/build/commands/observe/session.d.ts +18 -0
- package/build/commands/observe/session.js +65 -0
- package/build/graphql/generated.d.ts +51 -74
- package/build/graphql/generated.js +1 -1
- package/build/graphql/types/Observe.js +1 -0
- package/build/observe/fetchCustomEvents.d.ts +2 -2
- package/build/observe/fetchCustomEvents.js +2 -2
- package/build/observe/fetchEvents.d.ts +4 -3
- package/build/observe/fetchEvents.js +4 -3
- package/build/observe/fetchSessions.d.ts +51 -0
- package/build/observe/fetchSessions.js +86 -0
- package/build/observe/formatEvents.d.ts +1 -0
- package/build/observe/formatEvents.js +1 -0
- package/build/observe/formatSessions.d.ts +15 -0
- package/build/observe/formatSessions.js +100 -0
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +23 -26
- package/oclif.manifest.json +1438 -1343
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -141,6 +141,7 @@ eas --help COMMAND
|
|
|
141
141
|
* [`eas observe:metrics [METRIC]`](#eas-observemetrics-metric)
|
|
142
142
|
* [`eas observe:metrics-summary`](#eas-observemetrics-summary)
|
|
143
143
|
* [`eas observe:routes`](#eas-observeroutes)
|
|
144
|
+
* [`eas observe:session SESSIONID`](#eas-observesession-sessionid)
|
|
144
145
|
* [`eas observe:versions`](#eas-observeversions)
|
|
145
146
|
* [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
|
|
146
147
|
* [`eas open`](#eas-open)
|
|
@@ -206,7 +207,7 @@ DESCRIPTION
|
|
|
206
207
|
view the audit logs for an account
|
|
207
208
|
```
|
|
208
209
|
|
|
209
|
-
_See code: [packages/eas-cli/src/commands/account/audit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
210
|
+
_See code: [packages/eas-cli/src/commands/account/audit.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/account/audit.ts)_
|
|
210
211
|
|
|
211
212
|
## `eas account:login`
|
|
212
213
|
|
|
@@ -227,7 +228,7 @@ ALIASES
|
|
|
227
228
|
$ eas login
|
|
228
229
|
```
|
|
229
230
|
|
|
230
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
231
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
231
232
|
|
|
232
233
|
## `eas account:logout`
|
|
233
234
|
|
|
@@ -244,7 +245,7 @@ ALIASES
|
|
|
244
245
|
$ eas logout
|
|
245
246
|
```
|
|
246
247
|
|
|
247
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
248
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
248
249
|
|
|
249
250
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
250
251
|
|
|
@@ -266,7 +267,7 @@ DESCRIPTION
|
|
|
266
267
|
view account usage and billing for the current cycle
|
|
267
268
|
```
|
|
268
269
|
|
|
269
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
270
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
270
271
|
|
|
271
272
|
## `eas account:view`
|
|
272
273
|
|
|
@@ -283,7 +284,7 @@ ALIASES
|
|
|
283
284
|
$ eas whoami
|
|
284
285
|
```
|
|
285
286
|
|
|
286
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
287
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
287
288
|
|
|
288
289
|
## `eas analytics [STATUS]`
|
|
289
290
|
|
|
@@ -297,7 +298,7 @@ DESCRIPTION
|
|
|
297
298
|
display or change analytics settings
|
|
298
299
|
```
|
|
299
300
|
|
|
300
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
301
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
301
302
|
|
|
302
303
|
## `eas autocomplete [SHELL]`
|
|
303
304
|
|
|
@@ -349,7 +350,7 @@ DESCRIPTION
|
|
|
349
350
|
create a branch
|
|
350
351
|
```
|
|
351
352
|
|
|
352
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
353
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
353
354
|
|
|
354
355
|
## `eas branch:delete [NAME]`
|
|
355
356
|
|
|
@@ -370,7 +371,7 @@ DESCRIPTION
|
|
|
370
371
|
delete a branch
|
|
371
372
|
```
|
|
372
373
|
|
|
373
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
374
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
374
375
|
|
|
375
376
|
## `eas branch:list`
|
|
376
377
|
|
|
@@ -390,7 +391,7 @@ DESCRIPTION
|
|
|
390
391
|
list all branches
|
|
391
392
|
```
|
|
392
393
|
|
|
393
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
394
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
394
395
|
|
|
395
396
|
## `eas branch:rename`
|
|
396
397
|
|
|
@@ -410,7 +411,7 @@ DESCRIPTION
|
|
|
410
411
|
rename a branch
|
|
411
412
|
```
|
|
412
413
|
|
|
413
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
414
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
414
415
|
|
|
415
416
|
## `eas branch:view [NAME]`
|
|
416
417
|
|
|
@@ -433,7 +434,7 @@ DESCRIPTION
|
|
|
433
434
|
view a branch
|
|
434
435
|
```
|
|
435
436
|
|
|
436
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
437
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
437
438
|
|
|
438
439
|
## `eas build`
|
|
439
440
|
|
|
@@ -474,7 +475,7 @@ DESCRIPTION
|
|
|
474
475
|
start a build
|
|
475
476
|
```
|
|
476
477
|
|
|
477
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
478
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
478
479
|
|
|
479
480
|
## `eas build:cancel [BUILD_ID]`
|
|
480
481
|
|
|
@@ -494,7 +495,7 @@ DESCRIPTION
|
|
|
494
495
|
cancel a build
|
|
495
496
|
```
|
|
496
497
|
|
|
497
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
498
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
498
499
|
|
|
499
500
|
## `eas build:configure`
|
|
500
501
|
|
|
@@ -512,7 +513,7 @@ DESCRIPTION
|
|
|
512
513
|
configure the project to support EAS Build
|
|
513
514
|
```
|
|
514
515
|
|
|
515
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
516
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
516
517
|
|
|
517
518
|
## `eas build:delete [BUILD_ID]`
|
|
518
519
|
|
|
@@ -532,7 +533,7 @@ DESCRIPTION
|
|
|
532
533
|
delete a build
|
|
533
534
|
```
|
|
534
535
|
|
|
535
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
536
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
536
537
|
|
|
537
538
|
## `eas build:dev`
|
|
538
539
|
|
|
@@ -557,7 +558,7 @@ DESCRIPTION
|
|
|
557
558
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
558
559
|
```
|
|
559
560
|
|
|
560
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
561
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
561
562
|
|
|
562
563
|
## `eas build:download`
|
|
563
564
|
|
|
@@ -584,7 +585,7 @@ DESCRIPTION
|
|
|
584
585
|
download a simulator/emulator build by build ID or fingerprint hash
|
|
585
586
|
```
|
|
586
587
|
|
|
587
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
588
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
588
589
|
|
|
589
590
|
## `eas build:inspect`
|
|
590
591
|
|
|
@@ -622,7 +623,7 @@ DESCRIPTION
|
|
|
622
623
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
623
624
|
```
|
|
624
625
|
|
|
625
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
626
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
626
627
|
|
|
627
628
|
## `eas build:list`
|
|
628
629
|
|
|
@@ -662,7 +663,7 @@ DESCRIPTION
|
|
|
662
663
|
list all builds for your project
|
|
663
664
|
```
|
|
664
665
|
|
|
665
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
666
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
666
667
|
|
|
667
668
|
## `eas build:resign`
|
|
668
669
|
|
|
@@ -692,7 +693,7 @@ DESCRIPTION
|
|
|
692
693
|
re-sign a build archive
|
|
693
694
|
```
|
|
694
695
|
|
|
695
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
696
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
696
697
|
|
|
697
698
|
## `eas build:run`
|
|
698
699
|
|
|
@@ -720,7 +721,7 @@ DESCRIPTION
|
|
|
720
721
|
run simulator/emulator builds from eas-cli
|
|
721
722
|
```
|
|
722
723
|
|
|
723
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
724
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
724
725
|
|
|
725
726
|
## `eas build:submit`
|
|
726
727
|
|
|
@@ -772,7 +773,7 @@ DESCRIPTION
|
|
|
772
773
|
get the latest version from EAS servers
|
|
773
774
|
```
|
|
774
775
|
|
|
775
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
776
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
776
777
|
|
|
777
778
|
## `eas build:version:set`
|
|
778
779
|
|
|
@@ -790,7 +791,7 @@ DESCRIPTION
|
|
|
790
791
|
update version of an app
|
|
791
792
|
```
|
|
792
793
|
|
|
793
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
794
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
794
795
|
|
|
795
796
|
## `eas build:version:sync`
|
|
796
797
|
|
|
@@ -808,7 +809,7 @@ DESCRIPTION
|
|
|
808
809
|
update a version in native code with a value stored on EAS servers
|
|
809
810
|
```
|
|
810
811
|
|
|
811
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
812
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
812
813
|
|
|
813
814
|
## `eas build:view [BUILD_ID]`
|
|
814
815
|
|
|
@@ -825,7 +826,7 @@ DESCRIPTION
|
|
|
825
826
|
view a build for your project
|
|
826
827
|
```
|
|
827
828
|
|
|
828
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
829
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
829
830
|
|
|
830
831
|
## `eas channel:create [NAME]`
|
|
831
832
|
|
|
@@ -846,7 +847,7 @@ DESCRIPTION
|
|
|
846
847
|
create a channel
|
|
847
848
|
```
|
|
848
849
|
|
|
849
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
850
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
850
851
|
|
|
851
852
|
## `eas channel:delete [NAME]`
|
|
852
853
|
|
|
@@ -867,7 +868,7 @@ DESCRIPTION
|
|
|
867
868
|
Delete a channel
|
|
868
869
|
```
|
|
869
870
|
|
|
870
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
871
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
871
872
|
|
|
872
873
|
## `eas channel:edit [NAME]`
|
|
873
874
|
|
|
@@ -889,7 +890,7 @@ DESCRIPTION
|
|
|
889
890
|
point a channel at a new branch
|
|
890
891
|
```
|
|
891
892
|
|
|
892
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
893
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
893
894
|
|
|
894
895
|
## `eas channel:insights`
|
|
895
896
|
|
|
@@ -913,7 +914,7 @@ DESCRIPTION
|
|
|
913
914
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
914
915
|
```
|
|
915
916
|
|
|
916
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
917
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
917
918
|
|
|
918
919
|
## `eas channel:list`
|
|
919
920
|
|
|
@@ -933,7 +934,7 @@ DESCRIPTION
|
|
|
933
934
|
list all channels
|
|
934
935
|
```
|
|
935
936
|
|
|
936
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
937
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
937
938
|
|
|
938
939
|
## `eas channel:pause [NAME]`
|
|
939
940
|
|
|
@@ -955,7 +956,7 @@ DESCRIPTION
|
|
|
955
956
|
pause a channel to stop it from sending updates
|
|
956
957
|
```
|
|
957
958
|
|
|
958
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
959
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
959
960
|
|
|
960
961
|
## `eas channel:resume [NAME]`
|
|
961
962
|
|
|
@@ -977,7 +978,7 @@ DESCRIPTION
|
|
|
977
978
|
resume a channel to start sending updates
|
|
978
979
|
```
|
|
979
980
|
|
|
980
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
981
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
981
982
|
|
|
982
983
|
## `eas channel:rollout [CHANNEL]`
|
|
983
984
|
|
|
@@ -1012,7 +1013,7 @@ DESCRIPTION
|
|
|
1012
1013
|
Roll a new branch out on a channel incrementally.
|
|
1013
1014
|
```
|
|
1014
1015
|
|
|
1015
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1016
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
1016
1017
|
|
|
1017
1018
|
## `eas channel:view [NAME]`
|
|
1018
1019
|
|
|
@@ -1035,7 +1036,7 @@ DESCRIPTION
|
|
|
1035
1036
|
view a channel
|
|
1036
1037
|
```
|
|
1037
1038
|
|
|
1038
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1039
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
1039
1040
|
|
|
1040
1041
|
## `eas config`
|
|
1041
1042
|
|
|
@@ -1056,7 +1057,7 @@ DESCRIPTION
|
|
|
1056
1057
|
display project configuration (app.json + eas.json)
|
|
1057
1058
|
```
|
|
1058
1059
|
|
|
1059
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1060
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/config.ts)_
|
|
1060
1061
|
|
|
1061
1062
|
## `eas credentials`
|
|
1062
1063
|
|
|
@@ -1073,7 +1074,7 @@ DESCRIPTION
|
|
|
1073
1074
|
manage credentials
|
|
1074
1075
|
```
|
|
1075
1076
|
|
|
1076
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1077
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1077
1078
|
|
|
1078
1079
|
## `eas credentials:configure-build`
|
|
1079
1080
|
|
|
@@ -1091,7 +1092,7 @@ DESCRIPTION
|
|
|
1091
1092
|
Set up credentials for building your project.
|
|
1092
1093
|
```
|
|
1093
1094
|
|
|
1094
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1095
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1095
1096
|
|
|
1096
1097
|
## `eas deploy [options]`
|
|
1097
1098
|
|
|
@@ -1120,7 +1121,7 @@ ALIASES
|
|
|
1120
1121
|
$ eas worker:deploy
|
|
1121
1122
|
```
|
|
1122
1123
|
|
|
1123
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1124
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1124
1125
|
|
|
1125
1126
|
## `eas deploy:alias`
|
|
1126
1127
|
|
|
@@ -1145,7 +1146,7 @@ ALIASES
|
|
|
1145
1146
|
$ eas deploy:promote
|
|
1146
1147
|
```
|
|
1147
1148
|
|
|
1148
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1149
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1149
1150
|
|
|
1150
1151
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1151
1152
|
|
|
@@ -1166,7 +1167,7 @@ ALIASES
|
|
|
1166
1167
|
$ eas worker:alias:delete
|
|
1167
1168
|
```
|
|
1168
1169
|
|
|
1169
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1170
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1170
1171
|
|
|
1171
1172
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1172
1173
|
|
|
@@ -1187,7 +1188,7 @@ ALIASES
|
|
|
1187
1188
|
$ eas worker:delete
|
|
1188
1189
|
```
|
|
1189
1190
|
|
|
1190
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1191
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1191
1192
|
|
|
1192
1193
|
## `eas deploy:promote`
|
|
1193
1194
|
|
|
@@ -1224,7 +1225,7 @@ DESCRIPTION
|
|
|
1224
1225
|
register new Apple Devices to use for internal distribution
|
|
1225
1226
|
```
|
|
1226
1227
|
|
|
1227
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1228
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1228
1229
|
|
|
1229
1230
|
## `eas device:delete`
|
|
1230
1231
|
|
|
@@ -1244,7 +1245,7 @@ DESCRIPTION
|
|
|
1244
1245
|
remove a registered device from your account
|
|
1245
1246
|
```
|
|
1246
1247
|
|
|
1247
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1248
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1248
1249
|
|
|
1249
1250
|
## `eas device:list`
|
|
1250
1251
|
|
|
@@ -1265,7 +1266,7 @@ DESCRIPTION
|
|
|
1265
1266
|
list all registered devices for your account
|
|
1266
1267
|
```
|
|
1267
1268
|
|
|
1268
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1269
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1269
1270
|
|
|
1270
1271
|
## `eas device:rename`
|
|
1271
1272
|
|
|
@@ -1286,7 +1287,7 @@ DESCRIPTION
|
|
|
1286
1287
|
rename a registered device
|
|
1287
1288
|
```
|
|
1288
1289
|
|
|
1289
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1290
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1290
1291
|
|
|
1291
1292
|
## `eas device:view [UDID]`
|
|
1292
1293
|
|
|
@@ -1300,7 +1301,7 @@ DESCRIPTION
|
|
|
1300
1301
|
view a device for your project
|
|
1301
1302
|
```
|
|
1302
1303
|
|
|
1303
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1304
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1304
1305
|
|
|
1305
1306
|
## `eas diagnostics`
|
|
1306
1307
|
|
|
@@ -1314,7 +1315,7 @@ DESCRIPTION
|
|
|
1314
1315
|
display environment info
|
|
1315
1316
|
```
|
|
1316
1317
|
|
|
1317
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1318
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1318
1319
|
|
|
1319
1320
|
## `eas env:create [ENVIRONMENT]`
|
|
1320
1321
|
|
|
@@ -1346,7 +1347,7 @@ DESCRIPTION
|
|
|
1346
1347
|
create an environment variable for the current project or account
|
|
1347
1348
|
```
|
|
1348
1349
|
|
|
1349
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1350
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1350
1351
|
|
|
1351
1352
|
## `eas env:delete [ENVIRONMENT]`
|
|
1352
1353
|
|
|
@@ -1372,7 +1373,7 @@ DESCRIPTION
|
|
|
1372
1373
|
delete an environment variable for the current project or account
|
|
1373
1374
|
```
|
|
1374
1375
|
|
|
1375
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1376
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1376
1377
|
|
|
1377
1378
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1378
1379
|
|
|
@@ -1394,7 +1395,7 @@ DESCRIPTION
|
|
|
1394
1395
|
execute a command with environment variables from the selected environment
|
|
1395
1396
|
```
|
|
1396
1397
|
|
|
1397
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1398
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1398
1399
|
|
|
1399
1400
|
## `eas env:get [ENVIRONMENT]`
|
|
1400
1401
|
|
|
@@ -1422,7 +1423,7 @@ DESCRIPTION
|
|
|
1422
1423
|
view an environment variable for the current project or account
|
|
1423
1424
|
```
|
|
1424
1425
|
|
|
1425
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1426
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1426
1427
|
|
|
1427
1428
|
## `eas env:list [ENVIRONMENT]`
|
|
1428
1429
|
|
|
@@ -1450,7 +1451,7 @@ DESCRIPTION
|
|
|
1450
1451
|
list environment variables for the current project or account
|
|
1451
1452
|
```
|
|
1452
1453
|
|
|
1453
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1454
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1454
1455
|
|
|
1455
1456
|
## `eas env:pull [ENVIRONMENT]`
|
|
1456
1457
|
|
|
@@ -1473,7 +1474,7 @@ DESCRIPTION
|
|
|
1473
1474
|
pull environment variables for the selected environment to .env file
|
|
1474
1475
|
```
|
|
1475
1476
|
|
|
1476
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1477
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1477
1478
|
|
|
1478
1479
|
## `eas env:push [ENVIRONMENT]`
|
|
1479
1480
|
|
|
@@ -1495,7 +1496,7 @@ DESCRIPTION
|
|
|
1495
1496
|
push environment variables from .env file to the selected environment
|
|
1496
1497
|
```
|
|
1497
1498
|
|
|
1498
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1499
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1499
1500
|
|
|
1500
1501
|
## `eas env:update [ENVIRONMENT]`
|
|
1501
1502
|
|
|
@@ -1529,7 +1530,7 @@ DESCRIPTION
|
|
|
1529
1530
|
update an environment variable on the current project or account
|
|
1530
1531
|
```
|
|
1531
1532
|
|
|
1532
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1533
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1533
1534
|
|
|
1534
1535
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1535
1536
|
|
|
@@ -1573,7 +1574,7 @@ EXAMPLES
|
|
|
1573
1574
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1574
1575
|
```
|
|
1575
1576
|
|
|
1576
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1577
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1577
1578
|
|
|
1578
1579
|
## `eas fingerprint:generate`
|
|
1579
1580
|
|
|
@@ -1604,7 +1605,7 @@ EXAMPLES
|
|
|
1604
1605
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1605
1606
|
```
|
|
1606
1607
|
|
|
1607
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1608
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1608
1609
|
|
|
1609
1610
|
## `eas help [COMMAND]`
|
|
1610
1611
|
|
|
@@ -1683,7 +1684,7 @@ DESCRIPTION
|
|
|
1683
1684
|
connect a project to an App Store Connect app
|
|
1684
1685
|
```
|
|
1685
1686
|
|
|
1686
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1687
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
|
|
1687
1688
|
|
|
1688
1689
|
## `eas integrations:asc:disconnect`
|
|
1689
1690
|
|
|
@@ -1702,7 +1703,7 @@ DESCRIPTION
|
|
|
1702
1703
|
disconnect the current project from its App Store Connect app
|
|
1703
1704
|
```
|
|
1704
1705
|
|
|
1705
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1706
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
|
|
1706
1707
|
|
|
1707
1708
|
## `eas integrations:asc:status`
|
|
1708
1709
|
|
|
@@ -1720,7 +1721,7 @@ DESCRIPTION
|
|
|
1720
1721
|
show the App Store Connect app link status for the current project
|
|
1721
1722
|
```
|
|
1722
1723
|
|
|
1723
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1724
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
|
|
1724
1725
|
|
|
1725
1726
|
## `eas integrations:convex:connect`
|
|
1726
1727
|
|
|
@@ -1742,7 +1743,7 @@ DESCRIPTION
|
|
|
1742
1743
|
connect Convex to your Expo project
|
|
1743
1744
|
```
|
|
1744
1745
|
|
|
1745
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1746
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
|
|
1746
1747
|
|
|
1747
1748
|
## `eas integrations:convex:dashboard`
|
|
1748
1749
|
|
|
@@ -1756,7 +1757,7 @@ DESCRIPTION
|
|
|
1756
1757
|
open the Convex dashboard for the linked Convex project
|
|
1757
1758
|
```
|
|
1758
1759
|
|
|
1759
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1760
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
|
|
1760
1761
|
|
|
1761
1762
|
## `eas integrations:convex:project`
|
|
1762
1763
|
|
|
@@ -1770,7 +1771,7 @@ DESCRIPTION
|
|
|
1770
1771
|
display the Convex project linked to the current Expo app
|
|
1771
1772
|
```
|
|
1772
1773
|
|
|
1773
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1774
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
|
|
1774
1775
|
|
|
1775
1776
|
## `eas integrations:convex:project:delete`
|
|
1776
1777
|
|
|
@@ -1788,7 +1789,7 @@ DESCRIPTION
|
|
|
1788
1789
|
remove the Convex project link for the current Expo app from EAS servers
|
|
1789
1790
|
```
|
|
1790
1791
|
|
|
1791
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1792
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
|
|
1792
1793
|
|
|
1793
1794
|
## `eas integrations:convex:team`
|
|
1794
1795
|
|
|
@@ -1802,7 +1803,7 @@ DESCRIPTION
|
|
|
1802
1803
|
display Convex teams linked to the current Expo app's owner account
|
|
1803
1804
|
```
|
|
1804
1805
|
|
|
1805
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1806
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
|
|
1806
1807
|
|
|
1807
1808
|
## `eas integrations:convex:team:delete [CONVEX_TEAM]`
|
|
1808
1809
|
|
|
@@ -1823,7 +1824,7 @@ DESCRIPTION
|
|
|
1823
1824
|
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1824
1825
|
```
|
|
1825
1826
|
|
|
1826
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1827
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
|
|
1827
1828
|
|
|
1828
1829
|
## `eas integrations:convex:team:invite [CONVEX_TEAM]`
|
|
1829
1830
|
|
|
@@ -1843,7 +1844,7 @@ DESCRIPTION
|
|
|
1843
1844
|
send a Convex team invitation to your verified email address
|
|
1844
1845
|
```
|
|
1845
1846
|
|
|
1846
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1847
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
|
|
1847
1848
|
|
|
1848
1849
|
## `eas integrations:posthog:connect`
|
|
1849
1850
|
|
|
@@ -1870,7 +1871,7 @@ DESCRIPTION
|
|
|
1870
1871
|
connect PostHog to your Expo project
|
|
1871
1872
|
```
|
|
1872
1873
|
|
|
1873
|
-
_See code: [packages/eas-cli/src/commands/integrations/posthog/connect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1874
|
+
_See code: [packages/eas-cli/src/commands/integrations/posthog/connect.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/posthog/connect.ts)_
|
|
1874
1875
|
|
|
1875
1876
|
## `eas integrations:posthog:dashboard`
|
|
1876
1877
|
|
|
@@ -1888,7 +1889,7 @@ DESCRIPTION
|
|
|
1888
1889
|
open the PostHog dashboard for the linked PostHog project
|
|
1889
1890
|
```
|
|
1890
1891
|
|
|
1891
|
-
_See code: [packages/eas-cli/src/commands/integrations/posthog/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1892
|
+
_See code: [packages/eas-cli/src/commands/integrations/posthog/dashboard.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/posthog/dashboard.ts)_
|
|
1892
1893
|
|
|
1893
1894
|
## `eas integrations:posthog:disconnect`
|
|
1894
1895
|
|
|
@@ -1907,7 +1908,7 @@ DESCRIPTION
|
|
|
1907
1908
|
remove the PostHog project link for the current Expo app from EAS servers
|
|
1908
1909
|
```
|
|
1909
1910
|
|
|
1910
|
-
_See code: [packages/eas-cli/src/commands/integrations/posthog/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1911
|
+
_See code: [packages/eas-cli/src/commands/integrations/posthog/disconnect.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/integrations/posthog/disconnect.ts)_
|
|
1911
1912
|
|
|
1912
1913
|
## `eas login`
|
|
1913
1914
|
|
|
@@ -1959,7 +1960,7 @@ DESCRIPTION
|
|
|
1959
1960
|
validate the local store configuration
|
|
1960
1961
|
```
|
|
1961
1962
|
|
|
1962
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1963
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1963
1964
|
|
|
1964
1965
|
## `eas metadata:pull`
|
|
1965
1966
|
|
|
@@ -1977,7 +1978,7 @@ DESCRIPTION
|
|
|
1977
1978
|
generate the local store configuration from the app stores
|
|
1978
1979
|
```
|
|
1979
1980
|
|
|
1980
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1981
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1981
1982
|
|
|
1982
1983
|
## `eas metadata:push`
|
|
1983
1984
|
|
|
@@ -1995,7 +1996,7 @@ DESCRIPTION
|
|
|
1995
1996
|
sync the local store configuration to the app stores
|
|
1996
1997
|
```
|
|
1997
1998
|
|
|
1998
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
1999
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1999
2000
|
|
|
2000
2001
|
## `eas new [PATH]`
|
|
2001
2002
|
|
|
@@ -2054,7 +2055,7 @@ DESCRIPTION
|
|
|
2054
2055
|
arguments, a list of the available event names and associated event counts is returned.
|
|
2055
2056
|
```
|
|
2056
2057
|
|
|
2057
|
-
_See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2058
|
+
_See code: [packages/eas-cli/src/commands/observe/events.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/observe/events.ts)_
|
|
2058
2059
|
|
|
2059
2060
|
## `eas observe:metrics [METRIC]`
|
|
2060
2061
|
|
|
@@ -2089,7 +2090,7 @@ DESCRIPTION
|
|
|
2089
2090
|
display individual performance metric samples ordered by value
|
|
2090
2091
|
```
|
|
2091
2092
|
|
|
2092
|
-
_See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2093
|
+
_See code: [packages/eas-cli/src/commands/observe/metrics.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/observe/metrics.ts)_
|
|
2093
2094
|
|
|
2094
2095
|
## `eas observe:metrics-summary`
|
|
2095
2096
|
|
|
@@ -2120,7 +2121,7 @@ DESCRIPTION
|
|
|
2120
2121
|
display aggregated performance metric statistics grouped by app version
|
|
2121
2122
|
```
|
|
2122
2123
|
|
|
2123
|
-
_See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2124
|
+
_See code: [packages/eas-cli/src/commands/observe/metrics-summary.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/observe/metrics-summary.ts)_
|
|
2124
2125
|
|
|
2125
2126
|
## `eas observe:routes`
|
|
2126
2127
|
|
|
@@ -2157,7 +2158,29 @@ DESCRIPTION
|
|
|
2157
2158
|
display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
|
|
2158
2159
|
```
|
|
2159
2160
|
|
|
2160
|
-
_See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2161
|
+
_See code: [packages/eas-cli/src/commands/observe/routes.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/observe/routes.ts)_
|
|
2162
|
+
|
|
2163
|
+
## `eas observe:session SESSIONID`
|
|
2164
|
+
|
|
2165
|
+
display the timeline of metric and log events for a specific session
|
|
2166
|
+
|
|
2167
|
+
```
|
|
2168
|
+
USAGE
|
|
2169
|
+
$ eas observe:session SESSIONID [--project-id <value>] [--json] [--non-interactive]
|
|
2170
|
+
|
|
2171
|
+
ARGUMENTS
|
|
2172
|
+
SESSIONID Session ID to inspect
|
|
2173
|
+
|
|
2174
|
+
FLAGS
|
|
2175
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2176
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2177
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2178
|
+
|
|
2179
|
+
DESCRIPTION
|
|
2180
|
+
display the timeline of metric and log events for a specific session
|
|
2181
|
+
```
|
|
2182
|
+
|
|
2183
|
+
_See code: [packages/eas-cli/src/commands/observe/session.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/observe/session.ts)_
|
|
2161
2184
|
|
|
2162
2185
|
## `eas observe:versions`
|
|
2163
2186
|
|
|
@@ -2182,7 +2205,7 @@ DESCRIPTION
|
|
|
2182
2205
|
display app versions with build and update details
|
|
2183
2206
|
```
|
|
2184
2207
|
|
|
2185
|
-
_See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2208
|
+
_See code: [packages/eas-cli/src/commands/observe/versions.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/observe/versions.ts)_
|
|
2186
2209
|
|
|
2187
2210
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2188
2211
|
|
|
@@ -2212,7 +2235,7 @@ DESCRIPTION
|
|
|
2212
2235
|
open the project page in a web browser
|
|
2213
2236
|
```
|
|
2214
2237
|
|
|
2215
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2238
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/open.ts)_
|
|
2216
2239
|
|
|
2217
2240
|
## `eas project:info`
|
|
2218
2241
|
|
|
@@ -2226,7 +2249,7 @@ DESCRIPTION
|
|
|
2226
2249
|
information about the current project
|
|
2227
2250
|
```
|
|
2228
2251
|
|
|
2229
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2252
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
2230
2253
|
|
|
2231
2254
|
## `eas project:init`
|
|
2232
2255
|
|
|
@@ -2249,7 +2272,7 @@ ALIASES
|
|
|
2249
2272
|
$ eas init
|
|
2250
2273
|
```
|
|
2251
2274
|
|
|
2252
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2275
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
2253
2276
|
|
|
2254
2277
|
## `eas project:new [PATH]`
|
|
2255
2278
|
|
|
@@ -2273,7 +2296,7 @@ ALIASES
|
|
|
2273
2296
|
$ eas new
|
|
2274
2297
|
```
|
|
2275
2298
|
|
|
2276
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2299
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
2277
2300
|
|
|
2278
2301
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2279
2302
|
|
|
@@ -2291,7 +2314,7 @@ ALIASES
|
|
|
2291
2314
|
$ eas onboarding
|
|
2292
2315
|
```
|
|
2293
2316
|
|
|
2294
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2317
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
2295
2318
|
|
|
2296
2319
|
## `eas submit`
|
|
2297
2320
|
|
|
@@ -2324,7 +2347,7 @@ ALIASES
|
|
|
2324
2347
|
$ eas build:submit
|
|
2325
2348
|
```
|
|
2326
2349
|
|
|
2327
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2350
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/submit.ts)_
|
|
2328
2351
|
|
|
2329
2352
|
## `eas update`
|
|
2330
2353
|
|
|
@@ -2367,7 +2390,7 @@ DESCRIPTION
|
|
|
2367
2390
|
publish an update group
|
|
2368
2391
|
```
|
|
2369
2392
|
|
|
2370
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2393
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
2371
2394
|
|
|
2372
2395
|
## `eas update:configure`
|
|
2373
2396
|
|
|
@@ -2388,7 +2411,7 @@ DESCRIPTION
|
|
|
2388
2411
|
configure the project to support EAS Update
|
|
2389
2412
|
```
|
|
2390
2413
|
|
|
2391
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2414
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
2392
2415
|
|
|
2393
2416
|
## `eas update:delete GROUPID`
|
|
2394
2417
|
|
|
@@ -2409,7 +2432,7 @@ DESCRIPTION
|
|
|
2409
2432
|
delete all the updates in an update group
|
|
2410
2433
|
```
|
|
2411
2434
|
|
|
2412
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2435
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
2413
2436
|
|
|
2414
2437
|
## `eas update:edit [GROUPID]`
|
|
2415
2438
|
|
|
@@ -2434,7 +2457,7 @@ DESCRIPTION
|
|
|
2434
2457
|
edit all the updates in an update group
|
|
2435
2458
|
```
|
|
2436
2459
|
|
|
2437
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2460
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
2438
2461
|
|
|
2439
2462
|
## `eas update:embedded:delete ID`
|
|
2440
2463
|
|
|
@@ -2455,7 +2478,7 @@ DESCRIPTION
|
|
|
2455
2478
|
delete an embedded update registered with EAS Update
|
|
2456
2479
|
```
|
|
2457
2480
|
|
|
2458
|
-
_See code: [packages/eas-cli/src/commands/update/embedded/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2481
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/embedded/delete.ts)_
|
|
2459
2482
|
|
|
2460
2483
|
## `eas update:embedded:list`
|
|
2461
2484
|
|
|
@@ -2481,7 +2504,7 @@ DESCRIPTION
|
|
|
2481
2504
|
list embedded updates registered with EAS Update for this project
|
|
2482
2505
|
```
|
|
2483
2506
|
|
|
2484
|
-
_See code: [packages/eas-cli/src/commands/update/embedded/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2507
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/embedded/list.ts)_
|
|
2485
2508
|
|
|
2486
2509
|
## `eas update:embedded:upload`
|
|
2487
2510
|
|
|
@@ -2511,7 +2534,7 @@ EXAMPLES
|
|
|
2511
2534
|
$ 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>
|
|
2512
2535
|
```
|
|
2513
2536
|
|
|
2514
|
-
_See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2537
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/upload.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/embedded/upload.ts)_
|
|
2515
2538
|
|
|
2516
2539
|
## `eas update:embedded:view ID`
|
|
2517
2540
|
|
|
@@ -2531,7 +2554,7 @@ DESCRIPTION
|
|
|
2531
2554
|
view details of an embedded update registered with EAS Update
|
|
2532
2555
|
```
|
|
2533
2556
|
|
|
2534
|
-
_See code: [packages/eas-cli/src/commands/update/embedded/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2557
|
+
_See code: [packages/eas-cli/src/commands/update/embedded/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/embedded/view.ts)_
|
|
2535
2558
|
|
|
2536
2559
|
## `eas update:insights GROUPID`
|
|
2537
2560
|
|
|
@@ -2558,7 +2581,7 @@ DESCRIPTION
|
|
|
2558
2581
|
display launch, crash, unique-user, and size insights for an update group
|
|
2559
2582
|
```
|
|
2560
2583
|
|
|
2561
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2584
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
2562
2585
|
|
|
2563
2586
|
## `eas update:list`
|
|
2564
2587
|
|
|
@@ -2585,7 +2608,7 @@ DESCRIPTION
|
|
|
2585
2608
|
view the recent updates
|
|
2586
2609
|
```
|
|
2587
2610
|
|
|
2588
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2611
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
2589
2612
|
|
|
2590
2613
|
## `eas update:republish`
|
|
2591
2614
|
|
|
@@ -2623,7 +2646,7 @@ DESCRIPTION
|
|
|
2623
2646
|
roll back to an existing update
|
|
2624
2647
|
```
|
|
2625
2648
|
|
|
2626
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2649
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2627
2650
|
|
|
2628
2651
|
## `eas update:revert-update-rollout`
|
|
2629
2652
|
|
|
@@ -2651,7 +2674,7 @@ DESCRIPTION
|
|
|
2651
2674
|
revert a rollout update for a project
|
|
2652
2675
|
```
|
|
2653
2676
|
|
|
2654
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2677
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2655
2678
|
|
|
2656
2679
|
## `eas update:roll-back-to-embedded`
|
|
2657
2680
|
|
|
@@ -2681,7 +2704,7 @@ DESCRIPTION
|
|
|
2681
2704
|
roll back to the embedded update
|
|
2682
2705
|
```
|
|
2683
2706
|
|
|
2684
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2707
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2685
2708
|
|
|
2686
2709
|
## `eas update:rollback [GROUPID]`
|
|
2687
2710
|
|
|
@@ -2713,7 +2736,7 @@ DESCRIPTION
|
|
|
2713
2736
|
roll back to an embedded update or an existing update
|
|
2714
2737
|
```
|
|
2715
2738
|
|
|
2716
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2739
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2717
2740
|
|
|
2718
2741
|
## `eas update:view GROUPID`
|
|
2719
2742
|
|
|
@@ -2737,7 +2760,7 @@ DESCRIPTION
|
|
|
2737
2760
|
update group details
|
|
2738
2761
|
```
|
|
2739
2762
|
|
|
2740
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2763
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2741
2764
|
|
|
2742
2765
|
## `eas upload`
|
|
2743
2766
|
|
|
@@ -2758,7 +2781,7 @@ DESCRIPTION
|
|
|
2758
2781
|
upload a local build and generate a sharable link
|
|
2759
2782
|
```
|
|
2760
2783
|
|
|
2761
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2784
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2762
2785
|
|
|
2763
2786
|
## `eas webhook:create`
|
|
2764
2787
|
|
|
@@ -2780,7 +2803,7 @@ DESCRIPTION
|
|
|
2780
2803
|
create a webhook
|
|
2781
2804
|
```
|
|
2782
2805
|
|
|
2783
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2806
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2784
2807
|
|
|
2785
2808
|
## `eas webhook:delete [ID]`
|
|
2786
2809
|
|
|
@@ -2800,7 +2823,7 @@ DESCRIPTION
|
|
|
2800
2823
|
delete a webhook
|
|
2801
2824
|
```
|
|
2802
2825
|
|
|
2803
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2826
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2804
2827
|
|
|
2805
2828
|
## `eas webhook:list`
|
|
2806
2829
|
|
|
@@ -2819,7 +2842,7 @@ DESCRIPTION
|
|
|
2819
2842
|
list webhooks
|
|
2820
2843
|
```
|
|
2821
2844
|
|
|
2822
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2845
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2823
2846
|
|
|
2824
2847
|
## `eas webhook:update`
|
|
2825
2848
|
|
|
@@ -2842,7 +2865,7 @@ DESCRIPTION
|
|
|
2842
2865
|
update a webhook
|
|
2843
2866
|
```
|
|
2844
2867
|
|
|
2845
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2868
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2846
2869
|
|
|
2847
2870
|
## `eas webhook:view ID`
|
|
2848
2871
|
|
|
@@ -2859,7 +2882,7 @@ DESCRIPTION
|
|
|
2859
2882
|
view a webhook
|
|
2860
2883
|
```
|
|
2861
2884
|
|
|
2862
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
2885
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2863
2886
|
|
|
2864
2887
|
## `eas whoami`
|
|
2865
2888
|
|
|
@@ -2980,7 +3003,7 @@ DESCRIPTION
|
|
|
2980
3003
|
to cancel.
|
|
2981
3004
|
```
|
|
2982
3005
|
|
|
2983
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3006
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2984
3007
|
|
|
2985
3008
|
## `eas workflow:create [NAME]`
|
|
2986
3009
|
|
|
@@ -3000,7 +3023,7 @@ DESCRIPTION
|
|
|
3000
3023
|
create a new workflow configuration YAML file
|
|
3001
3024
|
```
|
|
3002
3025
|
|
|
3003
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3026
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
3004
3027
|
|
|
3005
3028
|
## `eas workflow:logs [ID]`
|
|
3006
3029
|
|
|
@@ -3024,7 +3047,7 @@ DESCRIPTION
|
|
|
3024
3047
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
3025
3048
|
```
|
|
3026
3049
|
|
|
3027
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3050
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
3028
3051
|
|
|
3029
3052
|
## `eas workflow:run FILE`
|
|
3030
3053
|
|
|
@@ -3064,7 +3087,7 @@ FLAG DESCRIPTIONS
|
|
|
3064
3087
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
3065
3088
|
```
|
|
3066
3089
|
|
|
3067
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3090
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
3068
3091
|
|
|
3069
3092
|
## `eas workflow:runs`
|
|
3070
3093
|
|
|
@@ -3086,7 +3109,7 @@ DESCRIPTION
|
|
|
3086
3109
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
3087
3110
|
```
|
|
3088
3111
|
|
|
3089
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3112
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
3090
3113
|
|
|
3091
3114
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
3092
3115
|
|
|
@@ -3114,7 +3137,7 @@ FLAG DESCRIPTIONS
|
|
|
3114
3137
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
3115
3138
|
```
|
|
3116
3139
|
|
|
3117
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3140
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
3118
3141
|
|
|
3119
3142
|
## `eas workflow:validate PATH`
|
|
3120
3143
|
|
|
@@ -3134,7 +3157,7 @@ DESCRIPTION
|
|
|
3134
3157
|
validate a workflow configuration yaml file
|
|
3135
3158
|
```
|
|
3136
3159
|
|
|
3137
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3160
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
3138
3161
|
|
|
3139
3162
|
## `eas workflow:view [ID]`
|
|
3140
3163
|
|
|
@@ -3156,5 +3179,5 @@ DESCRIPTION
|
|
|
3156
3179
|
workflow runs for the current project.
|
|
3157
3180
|
```
|
|
3158
3181
|
|
|
3159
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.
|
|
3182
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v20.4.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
3160
3183
|
<!-- commandsstop -->
|