eas-cli 19.1.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 +371 -100
- package/build/commands/go.d.ts +1 -0
- package/build/commands/go.js +29 -1
- package/build/commands/observe/events.d.ts +3 -3
- package/build/commands/observe/events.js +69 -51
- package/build/commands/observe/{logs.d.ts → metrics-summary.d.ts} +3 -11
- package/build/commands/observe/metrics-summary.js +95 -0
- package/build/commands/observe/metrics.d.ts +8 -3
- package/build/commands/observe/metrics.js +63 -47
- package/build/commands/observe/routes.d.ts +0 -1
- package/build/commands/observe/routes.js +0 -4
- package/build/commands/observe/versions.d.ts +0 -1
- package/build/commands/observe/versions.js +0 -4
- package/build/commands/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/upload.d.ts +20 -0
- package/build/commands/update/embedded/upload.js +129 -0
- package/build/commands/update/embedded/view.d.ts +17 -0
- package/build/commands/update/embedded/view.js +75 -0
- package/build/graphql/client.js +1 -0
- package/build/graphql/generated.d.ts +434 -4
- package/build/graphql/generated.js +35 -1
- package/build/graphql/mutations/EmbeddedUpdateAssetMutation.d.ts +13 -0
- package/build/graphql/mutations/EmbeddedUpdateAssetMutation.js +32 -0
- package/build/graphql/mutations/EmbeddedUpdateMutation.d.ts +19 -0
- package/build/graphql/mutations/EmbeddedUpdateMutation.js +51 -0
- package/build/graphql/queries/EmbeddedUpdateQuery.d.ts +18 -0
- package/build/graphql/queries/EmbeddedUpdateQuery.js +81 -0
- package/build/graphql/queries/WorkflowRunQuery.d.ts +2 -1
- package/build/graphql/queries/WorkflowRunQuery.js +19 -6
- package/build/observe/formatCustomEvents.js +5 -5
- package/build/observe/metricNames.js +2 -0
- package/build/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/build/update/embeddedManifest.d.ts +3 -0
- package/build/update/embeddedManifest.js +28 -0
- package/oclif.manifest.json +2803 -2309
- package/package.json +6 -6
- package/build/commands/observe/logs.js +0 -141
package/README.md
CHANGED
|
@@ -133,6 +133,11 @@ eas --help COMMAND
|
|
|
133
133
|
* [`eas metadata:pull`](#eas-metadatapull)
|
|
134
134
|
* [`eas metadata:push`](#eas-metadatapush)
|
|
135
135
|
* [`eas new [PATH]`](#eas-new-path)
|
|
136
|
+
* [`eas observe:events [EVENTNAME]`](#eas-observeevents-eventname)
|
|
137
|
+
* [`eas observe:metrics [METRIC]`](#eas-observemetrics-metric)
|
|
138
|
+
* [`eas observe:metrics-summary`](#eas-observemetrics-summary)
|
|
139
|
+
* [`eas observe:routes`](#eas-observeroutes)
|
|
140
|
+
* [`eas observe:versions`](#eas-observeversions)
|
|
136
141
|
* [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
|
|
137
142
|
* [`eas open`](#eas-open)
|
|
138
143
|
* [`eas project:info`](#eas-projectinfo)
|
|
@@ -144,6 +149,10 @@ eas --help COMMAND
|
|
|
144
149
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
145
150
|
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
146
151
|
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
152
|
+
* [`eas update:embedded:delete ID`](#eas-updateembeddeddelete-id)
|
|
153
|
+
* [`eas update:embedded:list`](#eas-updateembeddedlist)
|
|
154
|
+
* [`eas update:embedded:upload`](#eas-updateembeddedupload)
|
|
155
|
+
* [`eas update:embedded:view ID`](#eas-updateembeddedview-id)
|
|
147
156
|
* [`eas update:insights GROUPID`](#eas-updateinsights-groupid)
|
|
148
157
|
* [`eas update:list`](#eas-updatelist)
|
|
149
158
|
* [`eas update:republish`](#eas-updaterepublish)
|
|
@@ -190,7 +199,7 @@ ALIASES
|
|
|
190
199
|
$ eas login
|
|
191
200
|
```
|
|
192
201
|
|
|
193
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
194
203
|
|
|
195
204
|
## `eas account:logout`
|
|
196
205
|
|
|
@@ -207,7 +216,7 @@ ALIASES
|
|
|
207
216
|
$ eas logout
|
|
208
217
|
```
|
|
209
218
|
|
|
210
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
211
220
|
|
|
212
221
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
213
222
|
|
|
@@ -229,7 +238,7 @@ DESCRIPTION
|
|
|
229
238
|
view account usage and billing for the current cycle
|
|
230
239
|
```
|
|
231
240
|
|
|
232
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
233
242
|
|
|
234
243
|
## `eas account:view`
|
|
235
244
|
|
|
@@ -246,7 +255,7 @@ ALIASES
|
|
|
246
255
|
$ eas whoami
|
|
247
256
|
```
|
|
248
257
|
|
|
249
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
250
259
|
|
|
251
260
|
## `eas analytics [STATUS]`
|
|
252
261
|
|
|
@@ -260,7 +269,7 @@ DESCRIPTION
|
|
|
260
269
|
display or change analytics settings
|
|
261
270
|
```
|
|
262
271
|
|
|
263
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
264
273
|
|
|
265
274
|
## `eas autocomplete [SHELL]`
|
|
266
275
|
|
|
@@ -312,7 +321,7 @@ DESCRIPTION
|
|
|
312
321
|
create a branch
|
|
313
322
|
```
|
|
314
323
|
|
|
315
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
316
325
|
|
|
317
326
|
## `eas branch:delete [NAME]`
|
|
318
327
|
|
|
@@ -333,7 +342,7 @@ DESCRIPTION
|
|
|
333
342
|
delete a branch
|
|
334
343
|
```
|
|
335
344
|
|
|
336
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
337
346
|
|
|
338
347
|
## `eas branch:list`
|
|
339
348
|
|
|
@@ -353,7 +362,7 @@ DESCRIPTION
|
|
|
353
362
|
list all branches
|
|
354
363
|
```
|
|
355
364
|
|
|
356
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
357
366
|
|
|
358
367
|
## `eas branch:rename`
|
|
359
368
|
|
|
@@ -373,7 +382,7 @@ DESCRIPTION
|
|
|
373
382
|
rename a branch
|
|
374
383
|
```
|
|
375
384
|
|
|
376
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
377
386
|
|
|
378
387
|
## `eas branch:view [NAME]`
|
|
379
388
|
|
|
@@ -396,7 +405,7 @@ DESCRIPTION
|
|
|
396
405
|
view a branch
|
|
397
406
|
```
|
|
398
407
|
|
|
399
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
400
409
|
|
|
401
410
|
## `eas build`
|
|
402
411
|
|
|
@@ -437,7 +446,7 @@ DESCRIPTION
|
|
|
437
446
|
start a build
|
|
438
447
|
```
|
|
439
448
|
|
|
440
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
441
450
|
|
|
442
451
|
## `eas build:cancel [BUILD_ID]`
|
|
443
452
|
|
|
@@ -457,7 +466,7 @@ DESCRIPTION
|
|
|
457
466
|
cancel a build
|
|
458
467
|
```
|
|
459
468
|
|
|
460
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
461
470
|
|
|
462
471
|
## `eas build:configure`
|
|
463
472
|
|
|
@@ -475,7 +484,7 @@ DESCRIPTION
|
|
|
475
484
|
configure the project to support EAS Build
|
|
476
485
|
```
|
|
477
486
|
|
|
478
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
479
488
|
|
|
480
489
|
## `eas build:delete [BUILD_ID]`
|
|
481
490
|
|
|
@@ -495,7 +504,7 @@ DESCRIPTION
|
|
|
495
504
|
delete a build
|
|
496
505
|
```
|
|
497
506
|
|
|
498
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
499
508
|
|
|
500
509
|
## `eas build:dev`
|
|
501
510
|
|
|
@@ -520,7 +529,7 @@ DESCRIPTION
|
|
|
520
529
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
521
530
|
```
|
|
522
531
|
|
|
523
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
524
533
|
|
|
525
534
|
## `eas build:download`
|
|
526
535
|
|
|
@@ -547,7 +556,7 @@ DESCRIPTION
|
|
|
547
556
|
download a simulator/emulator build by build ID or fingerprint hash
|
|
548
557
|
```
|
|
549
558
|
|
|
550
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
551
560
|
|
|
552
561
|
## `eas build:inspect`
|
|
553
562
|
|
|
@@ -585,7 +594,7 @@ DESCRIPTION
|
|
|
585
594
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
586
595
|
```
|
|
587
596
|
|
|
588
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
589
598
|
|
|
590
599
|
## `eas build:list`
|
|
591
600
|
|
|
@@ -625,7 +634,7 @@ DESCRIPTION
|
|
|
625
634
|
list all builds for your project
|
|
626
635
|
```
|
|
627
636
|
|
|
628
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
629
638
|
|
|
630
639
|
## `eas build:resign`
|
|
631
640
|
|
|
@@ -655,7 +664,7 @@ DESCRIPTION
|
|
|
655
664
|
re-sign a build archive
|
|
656
665
|
```
|
|
657
666
|
|
|
658
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
659
668
|
|
|
660
669
|
## `eas build:run`
|
|
661
670
|
|
|
@@ -683,7 +692,7 @@ DESCRIPTION
|
|
|
683
692
|
run simulator/emulator builds from eas-cli
|
|
684
693
|
```
|
|
685
694
|
|
|
686
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
687
696
|
|
|
688
697
|
## `eas build:submit`
|
|
689
698
|
|
|
@@ -735,7 +744,7 @@ DESCRIPTION
|
|
|
735
744
|
get the latest version from EAS servers
|
|
736
745
|
```
|
|
737
746
|
|
|
738
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
739
748
|
|
|
740
749
|
## `eas build:version:set`
|
|
741
750
|
|
|
@@ -753,7 +762,7 @@ DESCRIPTION
|
|
|
753
762
|
update version of an app
|
|
754
763
|
```
|
|
755
764
|
|
|
756
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
757
766
|
|
|
758
767
|
## `eas build:version:sync`
|
|
759
768
|
|
|
@@ -771,7 +780,7 @@ DESCRIPTION
|
|
|
771
780
|
update a version in native code with a value stored on EAS servers
|
|
772
781
|
```
|
|
773
782
|
|
|
774
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
775
784
|
|
|
776
785
|
## `eas build:view [BUILD_ID]`
|
|
777
786
|
|
|
@@ -788,7 +797,7 @@ DESCRIPTION
|
|
|
788
797
|
view a build for your project
|
|
789
798
|
```
|
|
790
799
|
|
|
791
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
792
801
|
|
|
793
802
|
## `eas channel:create [NAME]`
|
|
794
803
|
|
|
@@ -809,7 +818,7 @@ DESCRIPTION
|
|
|
809
818
|
create a channel
|
|
810
819
|
```
|
|
811
820
|
|
|
812
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
813
822
|
|
|
814
823
|
## `eas channel:delete [NAME]`
|
|
815
824
|
|
|
@@ -830,7 +839,7 @@ DESCRIPTION
|
|
|
830
839
|
Delete a channel
|
|
831
840
|
```
|
|
832
841
|
|
|
833
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
834
843
|
|
|
835
844
|
## `eas channel:edit [NAME]`
|
|
836
845
|
|
|
@@ -852,7 +861,7 @@ DESCRIPTION
|
|
|
852
861
|
point a channel at a new branch
|
|
853
862
|
```
|
|
854
863
|
|
|
855
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
856
865
|
|
|
857
866
|
## `eas channel:insights`
|
|
858
867
|
|
|
@@ -876,7 +885,7 @@ DESCRIPTION
|
|
|
876
885
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
877
886
|
```
|
|
878
887
|
|
|
879
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
880
889
|
|
|
881
890
|
## `eas channel:list`
|
|
882
891
|
|
|
@@ -896,7 +905,7 @@ DESCRIPTION
|
|
|
896
905
|
list all channels
|
|
897
906
|
```
|
|
898
907
|
|
|
899
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
900
909
|
|
|
901
910
|
## `eas channel:pause [NAME]`
|
|
902
911
|
|
|
@@ -918,7 +927,7 @@ DESCRIPTION
|
|
|
918
927
|
pause a channel to stop it from sending updates
|
|
919
928
|
```
|
|
920
929
|
|
|
921
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
922
931
|
|
|
923
932
|
## `eas channel:resume [NAME]`
|
|
924
933
|
|
|
@@ -940,7 +949,7 @@ DESCRIPTION
|
|
|
940
949
|
resume a channel to start sending updates
|
|
941
950
|
```
|
|
942
951
|
|
|
943
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
944
953
|
|
|
945
954
|
## `eas channel:rollout [CHANNEL]`
|
|
946
955
|
|
|
@@ -975,7 +984,7 @@ DESCRIPTION
|
|
|
975
984
|
Roll a new branch out on a channel incrementally.
|
|
976
985
|
```
|
|
977
986
|
|
|
978
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
979
988
|
|
|
980
989
|
## `eas channel:view [NAME]`
|
|
981
990
|
|
|
@@ -998,7 +1007,7 @@ DESCRIPTION
|
|
|
998
1007
|
view a channel
|
|
999
1008
|
```
|
|
1000
1009
|
|
|
1001
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1002
1011
|
|
|
1003
1012
|
## `eas config`
|
|
1004
1013
|
|
|
@@ -1019,7 +1028,7 @@ DESCRIPTION
|
|
|
1019
1028
|
display project configuration (app.json + eas.json)
|
|
1020
1029
|
```
|
|
1021
1030
|
|
|
1022
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1023
1032
|
|
|
1024
1033
|
## `eas credentials`
|
|
1025
1034
|
|
|
@@ -1036,7 +1045,7 @@ DESCRIPTION
|
|
|
1036
1045
|
manage credentials
|
|
1037
1046
|
```
|
|
1038
1047
|
|
|
1039
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1040
1049
|
|
|
1041
1050
|
## `eas credentials:configure-build`
|
|
1042
1051
|
|
|
@@ -1054,7 +1063,7 @@ DESCRIPTION
|
|
|
1054
1063
|
Set up credentials for building your project.
|
|
1055
1064
|
```
|
|
1056
1065
|
|
|
1057
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1058
1067
|
|
|
1059
1068
|
## `eas deploy [options]`
|
|
1060
1069
|
|
|
@@ -1083,7 +1092,7 @@ ALIASES
|
|
|
1083
1092
|
$ eas worker:deploy
|
|
1084
1093
|
```
|
|
1085
1094
|
|
|
1086
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1087
1096
|
|
|
1088
1097
|
## `eas deploy:alias`
|
|
1089
1098
|
|
|
@@ -1108,7 +1117,7 @@ ALIASES
|
|
|
1108
1117
|
$ eas deploy:promote
|
|
1109
1118
|
```
|
|
1110
1119
|
|
|
1111
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1112
1121
|
|
|
1113
1122
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1114
1123
|
|
|
@@ -1129,7 +1138,7 @@ ALIASES
|
|
|
1129
1138
|
$ eas worker:alias:delete
|
|
1130
1139
|
```
|
|
1131
1140
|
|
|
1132
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1133
1142
|
|
|
1134
1143
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1135
1144
|
|
|
@@ -1150,7 +1159,7 @@ ALIASES
|
|
|
1150
1159
|
$ eas worker:delete
|
|
1151
1160
|
```
|
|
1152
1161
|
|
|
1153
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1154
1163
|
|
|
1155
1164
|
## `eas deploy:promote`
|
|
1156
1165
|
|
|
@@ -1187,7 +1196,7 @@ DESCRIPTION
|
|
|
1187
1196
|
register new Apple Devices to use for internal distribution
|
|
1188
1197
|
```
|
|
1189
1198
|
|
|
1190
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1191
1200
|
|
|
1192
1201
|
## `eas device:delete`
|
|
1193
1202
|
|
|
@@ -1207,7 +1216,7 @@ DESCRIPTION
|
|
|
1207
1216
|
remove a registered device from your account
|
|
1208
1217
|
```
|
|
1209
1218
|
|
|
1210
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1211
1220
|
|
|
1212
1221
|
## `eas device:list`
|
|
1213
1222
|
|
|
@@ -1228,7 +1237,7 @@ DESCRIPTION
|
|
|
1228
1237
|
list all registered devices for your account
|
|
1229
1238
|
```
|
|
1230
1239
|
|
|
1231
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1232
1241
|
|
|
1233
1242
|
## `eas device:rename`
|
|
1234
1243
|
|
|
@@ -1249,7 +1258,7 @@ DESCRIPTION
|
|
|
1249
1258
|
rename a registered device
|
|
1250
1259
|
```
|
|
1251
1260
|
|
|
1252
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1253
1262
|
|
|
1254
1263
|
## `eas device:view [UDID]`
|
|
1255
1264
|
|
|
@@ -1263,7 +1272,7 @@ DESCRIPTION
|
|
|
1263
1272
|
view a device for your project
|
|
1264
1273
|
```
|
|
1265
1274
|
|
|
1266
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1267
1276
|
|
|
1268
1277
|
## `eas diagnostics`
|
|
1269
1278
|
|
|
@@ -1277,7 +1286,7 @@ DESCRIPTION
|
|
|
1277
1286
|
display environment info
|
|
1278
1287
|
```
|
|
1279
1288
|
|
|
1280
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1281
1290
|
|
|
1282
1291
|
## `eas env:create [ENVIRONMENT]`
|
|
1283
1292
|
|
|
@@ -1309,7 +1318,7 @@ DESCRIPTION
|
|
|
1309
1318
|
create an environment variable for the current project or account
|
|
1310
1319
|
```
|
|
1311
1320
|
|
|
1312
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1313
1322
|
|
|
1314
1323
|
## `eas env:delete [ENVIRONMENT]`
|
|
1315
1324
|
|
|
@@ -1335,7 +1344,7 @@ DESCRIPTION
|
|
|
1335
1344
|
delete an environment variable for the current project or account
|
|
1336
1345
|
```
|
|
1337
1346
|
|
|
1338
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1339
1348
|
|
|
1340
1349
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1341
1350
|
|
|
@@ -1357,7 +1366,7 @@ DESCRIPTION
|
|
|
1357
1366
|
execute a command with environment variables from the selected environment
|
|
1358
1367
|
```
|
|
1359
1368
|
|
|
1360
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1361
1370
|
|
|
1362
1371
|
## `eas env:get [ENVIRONMENT]`
|
|
1363
1372
|
|
|
@@ -1385,7 +1394,7 @@ DESCRIPTION
|
|
|
1385
1394
|
view an environment variable for the current project or account
|
|
1386
1395
|
```
|
|
1387
1396
|
|
|
1388
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1389
1398
|
|
|
1390
1399
|
## `eas env:list [ENVIRONMENT]`
|
|
1391
1400
|
|
|
@@ -1413,7 +1422,7 @@ DESCRIPTION
|
|
|
1413
1422
|
list environment variables for the current project or account
|
|
1414
1423
|
```
|
|
1415
1424
|
|
|
1416
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1417
1426
|
|
|
1418
1427
|
## `eas env:pull [ENVIRONMENT]`
|
|
1419
1428
|
|
|
@@ -1436,7 +1445,7 @@ DESCRIPTION
|
|
|
1436
1445
|
pull environment variables for the selected environment to .env file
|
|
1437
1446
|
```
|
|
1438
1447
|
|
|
1439
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1440
1449
|
|
|
1441
1450
|
## `eas env:push [ENVIRONMENT]`
|
|
1442
1451
|
|
|
@@ -1458,7 +1467,7 @@ DESCRIPTION
|
|
|
1458
1467
|
push environment variables from .env file to the selected environment
|
|
1459
1468
|
```
|
|
1460
1469
|
|
|
1461
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1462
1471
|
|
|
1463
1472
|
## `eas env:update [ENVIRONMENT]`
|
|
1464
1473
|
|
|
@@ -1492,7 +1501,7 @@ DESCRIPTION
|
|
|
1492
1501
|
update an environment variable on the current project or account
|
|
1493
1502
|
```
|
|
1494
1503
|
|
|
1495
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1496
1505
|
|
|
1497
1506
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1498
1507
|
|
|
@@ -1536,7 +1545,7 @@ EXAMPLES
|
|
|
1536
1545
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1537
1546
|
```
|
|
1538
1547
|
|
|
1539
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1540
1549
|
|
|
1541
1550
|
## `eas fingerprint:generate`
|
|
1542
1551
|
|
|
@@ -1567,7 +1576,7 @@ EXAMPLES
|
|
|
1567
1576
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1568
1577
|
```
|
|
1569
1578
|
|
|
1570
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1571
1580
|
|
|
1572
1581
|
## `eas help [COMMAND]`
|
|
1573
1582
|
|
|
@@ -1646,7 +1655,7 @@ DESCRIPTION
|
|
|
1646
1655
|
connect a project to an App Store Connect app
|
|
1647
1656
|
```
|
|
1648
1657
|
|
|
1649
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1650
1659
|
|
|
1651
1660
|
## `eas integrations:asc:disconnect`
|
|
1652
1661
|
|
|
@@ -1665,7 +1674,7 @@ DESCRIPTION
|
|
|
1665
1674
|
disconnect the current project from its App Store Connect app
|
|
1666
1675
|
```
|
|
1667
1676
|
|
|
1668
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1669
1678
|
|
|
1670
1679
|
## `eas integrations:asc:status`
|
|
1671
1680
|
|
|
@@ -1683,7 +1692,7 @@ DESCRIPTION
|
|
|
1683
1692
|
show the App Store Connect app link status for the current project
|
|
1684
1693
|
```
|
|
1685
1694
|
|
|
1686
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1687
1696
|
|
|
1688
1697
|
## `eas integrations:convex:connect`
|
|
1689
1698
|
|
|
@@ -1705,7 +1714,7 @@ DESCRIPTION
|
|
|
1705
1714
|
connect Convex to your Expo project
|
|
1706
1715
|
```
|
|
1707
1716
|
|
|
1708
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1709
1718
|
|
|
1710
1719
|
## `eas integrations:convex:dashboard`
|
|
1711
1720
|
|
|
@@ -1719,7 +1728,7 @@ DESCRIPTION
|
|
|
1719
1728
|
open the Convex dashboard for the linked Convex project
|
|
1720
1729
|
```
|
|
1721
1730
|
|
|
1722
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1723
1732
|
|
|
1724
1733
|
## `eas integrations:convex:project`
|
|
1725
1734
|
|
|
@@ -1733,7 +1742,7 @@ DESCRIPTION
|
|
|
1733
1742
|
display the Convex project linked to the current Expo app
|
|
1734
1743
|
```
|
|
1735
1744
|
|
|
1736
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1737
1746
|
|
|
1738
1747
|
## `eas integrations:convex:project:delete`
|
|
1739
1748
|
|
|
@@ -1751,7 +1760,7 @@ DESCRIPTION
|
|
|
1751
1760
|
remove the Convex project link for the current Expo app from EAS servers
|
|
1752
1761
|
```
|
|
1753
1762
|
|
|
1754
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1755
1764
|
|
|
1756
1765
|
## `eas integrations:convex:team`
|
|
1757
1766
|
|
|
@@ -1765,7 +1774,7 @@ DESCRIPTION
|
|
|
1765
1774
|
display Convex teams linked to the current Expo app's owner account
|
|
1766
1775
|
```
|
|
1767
1776
|
|
|
1768
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1769
1778
|
|
|
1770
1779
|
## `eas integrations:convex:team:delete [CONVEX_TEAM]`
|
|
1771
1780
|
|
|
@@ -1786,7 +1795,7 @@ DESCRIPTION
|
|
|
1786
1795
|
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1787
1796
|
```
|
|
1788
1797
|
|
|
1789
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1790
1799
|
|
|
1791
1800
|
## `eas integrations:convex:team:invite [CONVEX_TEAM]`
|
|
1792
1801
|
|
|
@@ -1806,7 +1815,7 @@ DESCRIPTION
|
|
|
1806
1815
|
send a Convex team invitation to your verified email address
|
|
1807
1816
|
```
|
|
1808
1817
|
|
|
1809
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1810
1819
|
|
|
1811
1820
|
## `eas login`
|
|
1812
1821
|
|
|
@@ -1858,7 +1867,7 @@ DESCRIPTION
|
|
|
1858
1867
|
validate the local store configuration
|
|
1859
1868
|
```
|
|
1860
1869
|
|
|
1861
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1862
1871
|
|
|
1863
1872
|
## `eas metadata:pull`
|
|
1864
1873
|
|
|
@@ -1876,7 +1885,7 @@ DESCRIPTION
|
|
|
1876
1885
|
generate the local store configuration from the app stores
|
|
1877
1886
|
```
|
|
1878
1887
|
|
|
1879
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1880
1889
|
|
|
1881
1890
|
## `eas metadata:push`
|
|
1882
1891
|
|
|
@@ -1894,7 +1903,7 @@ DESCRIPTION
|
|
|
1894
1903
|
sync the local store configuration to the app stores
|
|
1895
1904
|
```
|
|
1896
1905
|
|
|
1897
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1898
1907
|
|
|
1899
1908
|
## `eas new [PATH]`
|
|
1900
1909
|
|
|
@@ -1918,6 +1927,171 @@ ALIASES
|
|
|
1918
1927
|
$ eas new
|
|
1919
1928
|
```
|
|
1920
1929
|
|
|
1930
|
+
## `eas observe:events [EVENTNAME]`
|
|
1931
|
+
|
|
1932
|
+
display individual events emitted by the app via `logEvent`, filtered by the event name in the argument. With no arguments, a list of the available event names and associated event counts is returned.
|
|
1933
|
+
|
|
1934
|
+
```
|
|
1935
|
+
USAGE
|
|
1936
|
+
$ eas observe:events [EVENTNAME] [--platform android|ios] [--after <value>] [--limit <value>] [--start <value> |
|
|
1937
|
+
--days <value>] [--end <value> | ] [--app-version <value>] [--update-id <value>] [--session-id <value>]
|
|
1938
|
+
[--all-events] [--project-id <value>] [--json] [--non-interactive]
|
|
1939
|
+
|
|
1940
|
+
ARGUMENTS
|
|
1941
|
+
[EVENTNAME] Event name to filter by
|
|
1942
|
+
|
|
1943
|
+
FLAGS
|
|
1944
|
+
--after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
|
|
1945
|
+
--all-events When no event name argument is provided, list all events across all event names instead of a
|
|
1946
|
+
summary of event names + counts.
|
|
1947
|
+
--app-version=<value> Filter by app version
|
|
1948
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
1949
|
+
--end=<value> End of time range (ISO date)
|
|
1950
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1951
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
|
|
1952
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1953
|
+
--platform=<option> Filter by platform
|
|
1954
|
+
<options: android|ios>
|
|
1955
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
1956
|
+
--session-id=<value> Filter by session ID
|
|
1957
|
+
--start=<value> Start of time range (ISO date)
|
|
1958
|
+
--update-id=<value> Filter by EAS update ID
|
|
1959
|
+
|
|
1960
|
+
DESCRIPTION
|
|
1961
|
+
display individual events emitted by the app via `logEvent`, filtered by the event name in the argument. With no
|
|
1962
|
+
arguments, a list of the available event names and associated event counts is returned.
|
|
1963
|
+
```
|
|
1964
|
+
|
|
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)_
|
|
1966
|
+
|
|
1967
|
+
## `eas observe:metrics [METRIC]`
|
|
1968
|
+
|
|
1969
|
+
display individual performance metric samples ordered by value
|
|
1970
|
+
|
|
1971
|
+
```
|
|
1972
|
+
USAGE
|
|
1973
|
+
$ eas observe:metrics [METRIC] [--sort slowest|fastest|newest|oldest] [--platform android|ios] [--after <value>]
|
|
1974
|
+
[--limit <value>] [--start <value> | --days <value>] [--end <value> | ] [--app-version <value>] [--update-id
|
|
1975
|
+
<value>] [--project-id <value>] [--json] [--non-interactive]
|
|
1976
|
+
|
|
1977
|
+
ARGUMENTS
|
|
1978
|
+
[METRIC] (tti|ttr|cold_launch|warm_launch|bundle_load|update_download) Metric to query (e.g. tti, cold_launch)
|
|
1979
|
+
|
|
1980
|
+
FLAGS
|
|
1981
|
+
--after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
|
|
1982
|
+
--app-version=<value> Filter by app version
|
|
1983
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
1984
|
+
--end=<value> End of time range (ISO date)
|
|
1985
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1986
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
|
|
1987
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1988
|
+
--platform=<option> Filter by platform
|
|
1989
|
+
<options: android|ios>
|
|
1990
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
1991
|
+
--sort=<option> [default: oldest] Sort order for events
|
|
1992
|
+
<options: slowest|fastest|newest|oldest>
|
|
1993
|
+
--start=<value> Start of time range (ISO date)
|
|
1994
|
+
--update-id=<value> Filter by EAS update ID
|
|
1995
|
+
|
|
1996
|
+
DESCRIPTION
|
|
1997
|
+
display individual performance metric samples ordered by value
|
|
1998
|
+
```
|
|
1999
|
+
|
|
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)_
|
|
2001
|
+
|
|
2002
|
+
## `eas observe:metrics-summary`
|
|
2003
|
+
|
|
2004
|
+
display aggregated performance metric statistics grouped by app version
|
|
2005
|
+
|
|
2006
|
+
```
|
|
2007
|
+
USAGE
|
|
2008
|
+
$ eas observe:metrics-summary [--platform android|ios] [--metric
|
|
2009
|
+
tti|ttr|cold_launch|warm_launch|bundle_load|update_download...] [--stat
|
|
2010
|
+
min|median|max|average|p80|p90|p99|eventCount...] [--start <value> | --days <value>] [--end <value> | ]
|
|
2011
|
+
[--project-id <value>] [--json] [--non-interactive]
|
|
2012
|
+
|
|
2013
|
+
FLAGS
|
|
2014
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
2015
|
+
--end=<value> End of time range (ISO date)
|
|
2016
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2017
|
+
--metric=<option>... Metric name to display (can be specified multiple times).
|
|
2018
|
+
<options: tti|ttr|cold_launch|warm_launch|bundle_load|update_download>
|
|
2019
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2020
|
+
--platform=<option> Filter by platform
|
|
2021
|
+
<options: android|ios>
|
|
2022
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2023
|
+
--start=<value> Start of time range (ISO date)
|
|
2024
|
+
--stat=<option>... Statistic to display per metric (can be specified multiple times)
|
|
2025
|
+
<options: min|median|max|average|p80|p90|p99|eventCount>
|
|
2026
|
+
|
|
2027
|
+
DESCRIPTION
|
|
2028
|
+
display aggregated performance metric statistics grouped by app version
|
|
2029
|
+
```
|
|
2030
|
+
|
|
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)_
|
|
2032
|
+
|
|
2033
|
+
## `eas observe:routes`
|
|
2034
|
+
|
|
2035
|
+
display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
|
|
2036
|
+
|
|
2037
|
+
```
|
|
2038
|
+
USAGE
|
|
2039
|
+
$ eas observe:routes [--platform android|ios] [--metric cold_ttr|warm_ttr|nav_tti...] [--stat
|
|
2040
|
+
median|med|p90|count|event_count|eventCount...] [--after <value>] [--limit <value>] [--start <value> | --days
|
|
2041
|
+
<value>] [--end <value> | ] [--app-version <value>] [--update-id <value>] [--build-number <value>] [--route-name
|
|
2042
|
+
<value>...] [--project-id <value>] [--json] [--non-interactive]
|
|
2043
|
+
|
|
2044
|
+
FLAGS
|
|
2045
|
+
--after=<value> Cursor for pagination. Use the endCursor from a previous query to fetch the next page.
|
|
2046
|
+
--app-version=<value> Filter by app version
|
|
2047
|
+
--build-number=<value> Filter by app build number
|
|
2048
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
2049
|
+
--end=<value> End of time range (ISO date)
|
|
2050
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2051
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 200.
|
|
2052
|
+
--metric=<option>... Navigation metric to display (can be specified multiple times). Defaults to all three.
|
|
2053
|
+
<options: cold_ttr|warm_ttr|nav_tti>
|
|
2054
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2055
|
+
--platform=<option> Filter by platform
|
|
2056
|
+
<options: android|ios>
|
|
2057
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2058
|
+
--route-name=<value>... Filter by route name (can be specified multiple times to include several routes)
|
|
2059
|
+
--start=<value> Start of time range (ISO date)
|
|
2060
|
+
--stat=<option>... Statistic to display per metric (can be specified multiple times)
|
|
2061
|
+
<options: median|med|p90|count|event_count|eventCount>
|
|
2062
|
+
--update-id=<value> Filter by EAS update ID
|
|
2063
|
+
|
|
2064
|
+
DESCRIPTION
|
|
2065
|
+
display app navigation route metrics (Cold TTR, Warm TTR, TTI) grouped by route name
|
|
2066
|
+
```
|
|
2067
|
+
|
|
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)_
|
|
2069
|
+
|
|
2070
|
+
## `eas observe:versions`
|
|
2071
|
+
|
|
2072
|
+
display app versions with build and update details
|
|
2073
|
+
|
|
2074
|
+
```
|
|
2075
|
+
USAGE
|
|
2076
|
+
$ eas observe:versions [--platform android|ios] [--start <value> | --days <value>] [--end <value> | ] [--project-id
|
|
2077
|
+
<value>] [--json] [--non-interactive]
|
|
2078
|
+
|
|
2079
|
+
FLAGS
|
|
2080
|
+
--days=<value> Show results from the last N days (mutually exclusive with --start/--end)
|
|
2081
|
+
--end=<value> End of time range (ISO date)
|
|
2082
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2083
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2084
|
+
--platform=<option> Filter by platform
|
|
2085
|
+
<options: android|ios>
|
|
2086
|
+
--project-id=<value> EAS project ID (defaults to the project ID of the current directory)
|
|
2087
|
+
--start=<value> Start of time range (ISO date)
|
|
2088
|
+
|
|
2089
|
+
DESCRIPTION
|
|
2090
|
+
display app versions with build and update details
|
|
2091
|
+
```
|
|
2092
|
+
|
|
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)_
|
|
2094
|
+
|
|
1921
2095
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1922
2096
|
|
|
1923
2097
|
continue onboarding process started on the https://expo.new website.
|
|
@@ -1946,7 +2120,7 @@ DESCRIPTION
|
|
|
1946
2120
|
open the project page in a web browser
|
|
1947
2121
|
```
|
|
1948
2122
|
|
|
1949
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1950
2124
|
|
|
1951
2125
|
## `eas project:info`
|
|
1952
2126
|
|
|
@@ -1960,7 +2134,7 @@ DESCRIPTION
|
|
|
1960
2134
|
information about the current project
|
|
1961
2135
|
```
|
|
1962
2136
|
|
|
1963
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1964
2138
|
|
|
1965
2139
|
## `eas project:init`
|
|
1966
2140
|
|
|
@@ -1983,7 +2157,7 @@ ALIASES
|
|
|
1983
2157
|
$ eas init
|
|
1984
2158
|
```
|
|
1985
2159
|
|
|
1986
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
1987
2161
|
|
|
1988
2162
|
## `eas project:new [PATH]`
|
|
1989
2163
|
|
|
@@ -2007,7 +2181,7 @@ ALIASES
|
|
|
2007
2181
|
$ eas new
|
|
2008
2182
|
```
|
|
2009
2183
|
|
|
2010
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2011
2185
|
|
|
2012
2186
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2013
2187
|
|
|
@@ -2025,7 +2199,7 @@ ALIASES
|
|
|
2025
2199
|
$ eas onboarding
|
|
2026
2200
|
```
|
|
2027
2201
|
|
|
2028
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2029
2203
|
|
|
2030
2204
|
## `eas submit`
|
|
2031
2205
|
|
|
@@ -2058,7 +2232,7 @@ ALIASES
|
|
|
2058
2232
|
$ eas build:submit
|
|
2059
2233
|
```
|
|
2060
2234
|
|
|
2061
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2062
2236
|
|
|
2063
2237
|
## `eas update`
|
|
2064
2238
|
|
|
@@ -2101,7 +2275,7 @@ DESCRIPTION
|
|
|
2101
2275
|
publish an update group
|
|
2102
2276
|
```
|
|
2103
2277
|
|
|
2104
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2105
2279
|
|
|
2106
2280
|
## `eas update:configure`
|
|
2107
2281
|
|
|
@@ -2122,7 +2296,7 @@ DESCRIPTION
|
|
|
2122
2296
|
configure the project to support EAS Update
|
|
2123
2297
|
```
|
|
2124
2298
|
|
|
2125
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2126
2300
|
|
|
2127
2301
|
## `eas update:delete GROUPID`
|
|
2128
2302
|
|
|
@@ -2143,7 +2317,7 @@ DESCRIPTION
|
|
|
2143
2317
|
delete all the updates in an update group
|
|
2144
2318
|
```
|
|
2145
2319
|
|
|
2146
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2147
2321
|
|
|
2148
2322
|
## `eas update:edit [GROUPID]`
|
|
2149
2323
|
|
|
@@ -2168,7 +2342,104 @@ DESCRIPTION
|
|
|
2168
2342
|
edit all the updates in an update group
|
|
2169
2343
|
```
|
|
2170
2344
|
|
|
2171
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2393
|
+
|
|
2394
|
+
## `eas update:embedded:upload`
|
|
2395
|
+
|
|
2396
|
+
upload the JS bundle embedded in a native build so EAS Update can generate bsdiff patches against it
|
|
2397
|
+
|
|
2398
|
+
```
|
|
2399
|
+
USAGE
|
|
2400
|
+
$ eas update:embedded:upload -p ios|android --bundle <value> --manifest <value> --channel <value> [--build-id <value>]
|
|
2401
|
+
[--json] [--non-interactive]
|
|
2402
|
+
|
|
2403
|
+
FLAGS
|
|
2404
|
+
-p, --platform=<option> (required) Platform of the embedded bundle
|
|
2405
|
+
<options: ios|android>
|
|
2406
|
+
--build-id=<value> EAS Build ID that produced this binary (required when invoked from EAS Build)
|
|
2407
|
+
--bundle=<value> (required) Path to the embedded JS bundle file
|
|
2408
|
+
--channel=<value> (required) Channel name the embedded update should be associated with
|
|
2409
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2410
|
+
--manifest=<value> (required) Path to the app.manifest file embedded in the build
|
|
2411
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2412
|
+
|
|
2413
|
+
DESCRIPTION
|
|
2414
|
+
upload the JS bundle embedded in a native build so EAS Update can generate bsdiff patches against it
|
|
2415
|
+
|
|
2416
|
+
EXAMPLES
|
|
2417
|
+
$ eas update:embedded:upload --platform ios --bundle ios/build/App.app/main.jsbundle --manifest ios/build/App.app/app.manifest --channel production
|
|
2418
|
+
|
|
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>
|
|
2420
|
+
```
|
|
2421
|
+
|
|
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)_
|
|
2172
2443
|
|
|
2173
2444
|
## `eas update:insights GROUPID`
|
|
2174
2445
|
|
|
@@ -2195,7 +2466,7 @@ DESCRIPTION
|
|
|
2195
2466
|
display launch, crash, unique-user, and size insights for an update group
|
|
2196
2467
|
```
|
|
2197
2468
|
|
|
2198
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2199
2470
|
|
|
2200
2471
|
## `eas update:list`
|
|
2201
2472
|
|
|
@@ -2222,7 +2493,7 @@ DESCRIPTION
|
|
|
2222
2493
|
view the recent updates
|
|
2223
2494
|
```
|
|
2224
2495
|
|
|
2225
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2226
2497
|
|
|
2227
2498
|
## `eas update:republish`
|
|
2228
2499
|
|
|
@@ -2260,7 +2531,7 @@ DESCRIPTION
|
|
|
2260
2531
|
roll back to an existing update
|
|
2261
2532
|
```
|
|
2262
2533
|
|
|
2263
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2264
2535
|
|
|
2265
2536
|
## `eas update:revert-update-rollout`
|
|
2266
2537
|
|
|
@@ -2288,7 +2559,7 @@ DESCRIPTION
|
|
|
2288
2559
|
revert a rollout update for a project
|
|
2289
2560
|
```
|
|
2290
2561
|
|
|
2291
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2292
2563
|
|
|
2293
2564
|
## `eas update:roll-back-to-embedded`
|
|
2294
2565
|
|
|
@@ -2318,7 +2589,7 @@ DESCRIPTION
|
|
|
2318
2589
|
roll back to the embedded update
|
|
2319
2590
|
```
|
|
2320
2591
|
|
|
2321
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2322
2593
|
|
|
2323
2594
|
## `eas update:rollback`
|
|
2324
2595
|
|
|
@@ -2339,7 +2610,7 @@ DESCRIPTION
|
|
|
2339
2610
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2340
2611
|
```
|
|
2341
2612
|
|
|
2342
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2343
2614
|
|
|
2344
2615
|
## `eas update:view GROUPID`
|
|
2345
2616
|
|
|
@@ -2363,7 +2634,7 @@ DESCRIPTION
|
|
|
2363
2634
|
update group details
|
|
2364
2635
|
```
|
|
2365
2636
|
|
|
2366
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2367
2638
|
|
|
2368
2639
|
## `eas upload`
|
|
2369
2640
|
|
|
@@ -2384,7 +2655,7 @@ DESCRIPTION
|
|
|
2384
2655
|
upload a local build and generate a sharable link
|
|
2385
2656
|
```
|
|
2386
2657
|
|
|
2387
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2388
2659
|
|
|
2389
2660
|
## `eas webhook:create`
|
|
2390
2661
|
|
|
@@ -2406,7 +2677,7 @@ DESCRIPTION
|
|
|
2406
2677
|
create a webhook
|
|
2407
2678
|
```
|
|
2408
2679
|
|
|
2409
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2410
2681
|
|
|
2411
2682
|
## `eas webhook:delete [ID]`
|
|
2412
2683
|
|
|
@@ -2426,7 +2697,7 @@ DESCRIPTION
|
|
|
2426
2697
|
delete a webhook
|
|
2427
2698
|
```
|
|
2428
2699
|
|
|
2429
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2430
2701
|
|
|
2431
2702
|
## `eas webhook:list`
|
|
2432
2703
|
|
|
@@ -2445,7 +2716,7 @@ DESCRIPTION
|
|
|
2445
2716
|
list webhooks
|
|
2446
2717
|
```
|
|
2447
2718
|
|
|
2448
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2449
2720
|
|
|
2450
2721
|
## `eas webhook:update`
|
|
2451
2722
|
|
|
@@ -2468,7 +2739,7 @@ DESCRIPTION
|
|
|
2468
2739
|
update a webhook
|
|
2469
2740
|
```
|
|
2470
2741
|
|
|
2471
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2472
2743
|
|
|
2473
2744
|
## `eas webhook:view ID`
|
|
2474
2745
|
|
|
@@ -2485,7 +2756,7 @@ DESCRIPTION
|
|
|
2485
2756
|
view a webhook
|
|
2486
2757
|
```
|
|
2487
2758
|
|
|
2488
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2489
2760
|
|
|
2490
2761
|
## `eas whoami`
|
|
2491
2762
|
|
|
@@ -2606,7 +2877,7 @@ DESCRIPTION
|
|
|
2606
2877
|
to cancel.
|
|
2607
2878
|
```
|
|
2608
2879
|
|
|
2609
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2610
2881
|
|
|
2611
2882
|
## `eas workflow:create [NAME]`
|
|
2612
2883
|
|
|
@@ -2626,7 +2897,7 @@ DESCRIPTION
|
|
|
2626
2897
|
create a new workflow configuration YAML file
|
|
2627
2898
|
```
|
|
2628
2899
|
|
|
2629
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2630
2901
|
|
|
2631
2902
|
## `eas workflow:logs [ID]`
|
|
2632
2903
|
|
|
@@ -2650,7 +2921,7 @@ DESCRIPTION
|
|
|
2650
2921
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2651
2922
|
```
|
|
2652
2923
|
|
|
2653
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2654
2925
|
|
|
2655
2926
|
## `eas workflow:run FILE`
|
|
2656
2927
|
|
|
@@ -2690,7 +2961,7 @@ FLAG DESCRIPTIONS
|
|
|
2690
2961
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2691
2962
|
```
|
|
2692
2963
|
|
|
2693
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2694
2965
|
|
|
2695
2966
|
## `eas workflow:runs`
|
|
2696
2967
|
|
|
@@ -2712,7 +2983,7 @@ DESCRIPTION
|
|
|
2712
2983
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2713
2984
|
```
|
|
2714
2985
|
|
|
2715
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2716
2987
|
|
|
2717
2988
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2718
2989
|
|
|
@@ -2740,7 +3011,7 @@ FLAG DESCRIPTIONS
|
|
|
2740
3011
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2741
3012
|
```
|
|
2742
3013
|
|
|
2743
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2744
3015
|
|
|
2745
3016
|
## `eas workflow:validate PATH`
|
|
2746
3017
|
|
|
@@ -2760,7 +3031,7 @@ DESCRIPTION
|
|
|
2760
3031
|
validate a workflow configuration yaml file
|
|
2761
3032
|
```
|
|
2762
3033
|
|
|
2763
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2764
3035
|
|
|
2765
3036
|
## `eas workflow:view [ID]`
|
|
2766
3037
|
|
|
@@ -2782,5 +3053,5 @@ DESCRIPTION
|
|
|
2782
3053
|
workflow runs for the current project.
|
|
2783
3054
|
```
|
|
2784
3055
|
|
|
2785
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/
|
|
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)_
|
|
2786
3057
|
<!-- commandsstop -->
|