eas-cli 18.7.0 → 18.8.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 +147 -90
- package/build/channel/insights/formatInsights.d.ts +47 -0
- package/build/channel/insights/formatInsights.js +108 -0
- package/build/commands/channel/insights.d.ts +18 -0
- package/build/commands/channel/insights.js +71 -0
- package/build/commands/observe/events.d.ts +1 -0
- package/build/commands/observe/events.js +17 -4
- package/build/commands/observe/metrics.d.ts +1 -0
- package/build/commands/observe/metrics.js +18 -6
- package/build/commands/observe/versions.d.ts +1 -0
- package/build/commands/observe/versions.js +17 -4
- package/build/commands/update/insights.d.ts +19 -0
- package/build/commands/update/insights.js +75 -0
- package/build/commands/update/view.d.ts +4 -0
- package/build/commands/update/view.js +47 -2
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +28 -3
- package/build/graphql/client.d.ts +13 -0
- package/build/graphql/client.js +36 -1
- package/build/graphql/generated.d.ts +193 -0
- package/build/graphql/generated.js +8 -2
- package/build/graphql/queries/ChannelInsightsQuery.d.ts +12 -0
- package/build/graphql/queries/ChannelInsightsQuery.js +81 -0
- package/build/graphql/queries/UpdateInsightsQuery.d.ts +10 -0
- package/build/graphql/queries/UpdateInsightsQuery.js +53 -0
- package/build/graphql/types/Observe.js +1 -0
- package/build/insights/formatTimespan.d.ts +7 -0
- package/build/insights/formatTimespan.js +15 -0
- package/build/insights/timeRange.d.ts +10 -0
- package/build/insights/timeRange.js +10 -0
- package/build/metadata/apple/tasks/previews.js +41 -15
- package/build/observe/formatEvents.d.ts +3 -0
- package/build/observe/formatEvents.js +4 -0
- package/build/observe/formatMetrics.d.ts +3 -2
- package/build/observe/formatMetrics.js +16 -27
- package/build/observe/formatVersions.js +2 -8
- package/build/update/insights/formatInsights.d.ts +34 -0
- package/build/update/insights/formatInsights.js +128 -0
- package/build/utils/renderTextTable.d.ts +6 -0
- package/build/utils/renderTextTable.js +23 -0
- package/oclif.manifest.json +585 -287
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -84,6 +84,7 @@ eas --help COMMAND
|
|
|
84
84
|
* [`eas channel:create [NAME]`](#eas-channelcreate-name)
|
|
85
85
|
* [`eas channel:delete [NAME]`](#eas-channeldelete-name)
|
|
86
86
|
* [`eas channel:edit [NAME]`](#eas-channeledit-name)
|
|
87
|
+
* [`eas channel:insights`](#eas-channelinsights)
|
|
87
88
|
* [`eas channel:list`](#eas-channellist)
|
|
88
89
|
* [`eas channel:pause [NAME]`](#eas-channelpause-name)
|
|
89
90
|
* [`eas channel:resume [NAME]`](#eas-channelresume-name)
|
|
@@ -133,6 +134,7 @@ eas --help COMMAND
|
|
|
133
134
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
134
135
|
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
135
136
|
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
137
|
+
* [`eas update:insights GROUPID`](#eas-updateinsights-groupid)
|
|
136
138
|
* [`eas update:list`](#eas-updatelist)
|
|
137
139
|
* [`eas update:republish`](#eas-updaterepublish)
|
|
138
140
|
* [`eas update:revert-update-rollout`](#eas-updaterevert-update-rollout)
|
|
@@ -178,7 +180,7 @@ ALIASES
|
|
|
178
180
|
$ eas login
|
|
179
181
|
```
|
|
180
182
|
|
|
181
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
183
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
182
184
|
|
|
183
185
|
## `eas account:logout`
|
|
184
186
|
|
|
@@ -195,7 +197,7 @@ ALIASES
|
|
|
195
197
|
$ eas logout
|
|
196
198
|
```
|
|
197
199
|
|
|
198
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
200
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
199
201
|
|
|
200
202
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
201
203
|
|
|
@@ -217,7 +219,7 @@ DESCRIPTION
|
|
|
217
219
|
view account usage and billing for the current cycle
|
|
218
220
|
```
|
|
219
221
|
|
|
220
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
222
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
221
223
|
|
|
222
224
|
## `eas account:view`
|
|
223
225
|
|
|
@@ -234,7 +236,7 @@ ALIASES
|
|
|
234
236
|
$ eas whoami
|
|
235
237
|
```
|
|
236
238
|
|
|
237
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
239
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
238
240
|
|
|
239
241
|
## `eas analytics [STATUS]`
|
|
240
242
|
|
|
@@ -248,7 +250,7 @@ DESCRIPTION
|
|
|
248
250
|
display or change analytics settings
|
|
249
251
|
```
|
|
250
252
|
|
|
251
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
253
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
252
254
|
|
|
253
255
|
## `eas autocomplete [SHELL]`
|
|
254
256
|
|
|
@@ -300,7 +302,7 @@ DESCRIPTION
|
|
|
300
302
|
create a branch
|
|
301
303
|
```
|
|
302
304
|
|
|
303
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
305
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
304
306
|
|
|
305
307
|
## `eas branch:delete [NAME]`
|
|
306
308
|
|
|
@@ -321,7 +323,7 @@ DESCRIPTION
|
|
|
321
323
|
delete a branch
|
|
322
324
|
```
|
|
323
325
|
|
|
324
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
326
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
325
327
|
|
|
326
328
|
## `eas branch:list`
|
|
327
329
|
|
|
@@ -341,7 +343,7 @@ DESCRIPTION
|
|
|
341
343
|
list all branches
|
|
342
344
|
```
|
|
343
345
|
|
|
344
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
346
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
345
347
|
|
|
346
348
|
## `eas branch:rename`
|
|
347
349
|
|
|
@@ -361,7 +363,7 @@ DESCRIPTION
|
|
|
361
363
|
rename a branch
|
|
362
364
|
```
|
|
363
365
|
|
|
364
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
366
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
365
367
|
|
|
366
368
|
## `eas branch:view [NAME]`
|
|
367
369
|
|
|
@@ -384,7 +386,7 @@ DESCRIPTION
|
|
|
384
386
|
view a branch
|
|
385
387
|
```
|
|
386
388
|
|
|
387
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
389
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
388
390
|
|
|
389
391
|
## `eas build`
|
|
390
392
|
|
|
@@ -422,7 +424,7 @@ DESCRIPTION
|
|
|
422
424
|
start a build
|
|
423
425
|
```
|
|
424
426
|
|
|
425
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
427
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
426
428
|
|
|
427
429
|
## `eas build:cancel [BUILD_ID]`
|
|
428
430
|
|
|
@@ -442,7 +444,7 @@ DESCRIPTION
|
|
|
442
444
|
cancel a build
|
|
443
445
|
```
|
|
444
446
|
|
|
445
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
447
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
446
448
|
|
|
447
449
|
## `eas build:configure`
|
|
448
450
|
|
|
@@ -460,7 +462,7 @@ DESCRIPTION
|
|
|
460
462
|
configure the project to support EAS Build
|
|
461
463
|
```
|
|
462
464
|
|
|
463
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
465
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
464
466
|
|
|
465
467
|
## `eas build:delete [BUILD_ID]`
|
|
466
468
|
|
|
@@ -480,7 +482,7 @@ DESCRIPTION
|
|
|
480
482
|
delete a build
|
|
481
483
|
```
|
|
482
484
|
|
|
483
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
485
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
484
486
|
|
|
485
487
|
## `eas build:dev`
|
|
486
488
|
|
|
@@ -502,7 +504,7 @@ DESCRIPTION
|
|
|
502
504
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
503
505
|
```
|
|
504
506
|
|
|
505
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
507
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
506
508
|
|
|
507
509
|
## `eas build:download`
|
|
508
510
|
|
|
@@ -523,7 +525,7 @@ DESCRIPTION
|
|
|
523
525
|
download simulator/emulator builds for a given fingerprint hash
|
|
524
526
|
```
|
|
525
527
|
|
|
526
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
528
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
527
529
|
|
|
528
530
|
## `eas build:inspect`
|
|
529
531
|
|
|
@@ -561,7 +563,7 @@ DESCRIPTION
|
|
|
561
563
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
562
564
|
```
|
|
563
565
|
|
|
564
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
566
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
565
567
|
|
|
566
568
|
## `eas build:list`
|
|
567
569
|
|
|
@@ -601,7 +603,7 @@ DESCRIPTION
|
|
|
601
603
|
list all builds for your project
|
|
602
604
|
```
|
|
603
605
|
|
|
604
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
606
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
605
607
|
|
|
606
608
|
## `eas build:resign`
|
|
607
609
|
|
|
@@ -631,7 +633,7 @@ DESCRIPTION
|
|
|
631
633
|
re-sign a build archive
|
|
632
634
|
```
|
|
633
635
|
|
|
634
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
636
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
635
637
|
|
|
636
638
|
## `eas build:run`
|
|
637
639
|
|
|
@@ -657,7 +659,7 @@ DESCRIPTION
|
|
|
657
659
|
run simulator/emulator builds from eas-cli
|
|
658
660
|
```
|
|
659
661
|
|
|
660
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
662
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
661
663
|
|
|
662
664
|
## `eas build:submit`
|
|
663
665
|
|
|
@@ -709,7 +711,7 @@ DESCRIPTION
|
|
|
709
711
|
get the latest version from EAS servers
|
|
710
712
|
```
|
|
711
713
|
|
|
712
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
714
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
713
715
|
|
|
714
716
|
## `eas build:version:set`
|
|
715
717
|
|
|
@@ -727,7 +729,7 @@ DESCRIPTION
|
|
|
727
729
|
update version of an app
|
|
728
730
|
```
|
|
729
731
|
|
|
730
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
732
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
731
733
|
|
|
732
734
|
## `eas build:version:sync`
|
|
733
735
|
|
|
@@ -745,7 +747,7 @@ DESCRIPTION
|
|
|
745
747
|
update a version in native code with a value stored on EAS servers
|
|
746
748
|
```
|
|
747
749
|
|
|
748
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
750
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
749
751
|
|
|
750
752
|
## `eas build:view [BUILD_ID]`
|
|
751
753
|
|
|
@@ -762,7 +764,7 @@ DESCRIPTION
|
|
|
762
764
|
view a build for your project
|
|
763
765
|
```
|
|
764
766
|
|
|
765
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
767
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
766
768
|
|
|
767
769
|
## `eas channel:create [NAME]`
|
|
768
770
|
|
|
@@ -783,7 +785,7 @@ DESCRIPTION
|
|
|
783
785
|
create a channel
|
|
784
786
|
```
|
|
785
787
|
|
|
786
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
788
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
787
789
|
|
|
788
790
|
## `eas channel:delete [NAME]`
|
|
789
791
|
|
|
@@ -804,7 +806,7 @@ DESCRIPTION
|
|
|
804
806
|
Delete a channel
|
|
805
807
|
```
|
|
806
808
|
|
|
807
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
809
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
808
810
|
|
|
809
811
|
## `eas channel:edit [NAME]`
|
|
810
812
|
|
|
@@ -826,7 +828,31 @@ DESCRIPTION
|
|
|
826
828
|
point a channel at a new branch
|
|
827
829
|
```
|
|
828
830
|
|
|
829
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
831
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
832
|
+
|
|
833
|
+
## `eas channel:insights`
|
|
834
|
+
|
|
835
|
+
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
836
|
+
|
|
837
|
+
```
|
|
838
|
+
USAGE
|
|
839
|
+
$ eas channel:insights --channel <value> --runtime-version <value> [--days <value> | --start <value> | --end
|
|
840
|
+
<value>] [--json] [--non-interactive]
|
|
841
|
+
|
|
842
|
+
FLAGS
|
|
843
|
+
--channel=<value> (required) Name of the channel.
|
|
844
|
+
--days=<value> Show insights from the last N days (default 7, mutually exclusive with --start/--end).
|
|
845
|
+
--end=<value> End of insights time range (ISO date).
|
|
846
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
847
|
+
--non-interactive Run the command in non-interactive mode.
|
|
848
|
+
--runtime-version=<value> (required) Runtime version to query insights for.
|
|
849
|
+
--start=<value> Start of insights time range (ISO date).
|
|
850
|
+
|
|
851
|
+
DESCRIPTION
|
|
852
|
+
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
853
|
+
```
|
|
854
|
+
|
|
855
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
830
856
|
|
|
831
857
|
## `eas channel:list`
|
|
832
858
|
|
|
@@ -846,7 +872,7 @@ DESCRIPTION
|
|
|
846
872
|
list all channels
|
|
847
873
|
```
|
|
848
874
|
|
|
849
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
875
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
850
876
|
|
|
851
877
|
## `eas channel:pause [NAME]`
|
|
852
878
|
|
|
@@ -868,7 +894,7 @@ DESCRIPTION
|
|
|
868
894
|
pause a channel to stop it from sending updates
|
|
869
895
|
```
|
|
870
896
|
|
|
871
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
897
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
872
898
|
|
|
873
899
|
## `eas channel:resume [NAME]`
|
|
874
900
|
|
|
@@ -890,7 +916,7 @@ DESCRIPTION
|
|
|
890
916
|
resume a channel to start sending updates
|
|
891
917
|
```
|
|
892
918
|
|
|
893
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
919
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
894
920
|
|
|
895
921
|
## `eas channel:rollout [CHANNEL]`
|
|
896
922
|
|
|
@@ -925,7 +951,7 @@ DESCRIPTION
|
|
|
925
951
|
Roll a new branch out on a channel incrementally.
|
|
926
952
|
```
|
|
927
953
|
|
|
928
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
954
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
929
955
|
|
|
930
956
|
## `eas channel:view [NAME]`
|
|
931
957
|
|
|
@@ -948,7 +974,7 @@ DESCRIPTION
|
|
|
948
974
|
view a channel
|
|
949
975
|
```
|
|
950
976
|
|
|
951
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
977
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
952
978
|
|
|
953
979
|
## `eas config`
|
|
954
980
|
|
|
@@ -969,7 +995,7 @@ DESCRIPTION
|
|
|
969
995
|
display project configuration (app.json + eas.json)
|
|
970
996
|
```
|
|
971
997
|
|
|
972
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
998
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/config.ts)_
|
|
973
999
|
|
|
974
1000
|
## `eas credentials`
|
|
975
1001
|
|
|
@@ -986,7 +1012,7 @@ DESCRIPTION
|
|
|
986
1012
|
manage credentials
|
|
987
1013
|
```
|
|
988
1014
|
|
|
989
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1015
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
990
1016
|
|
|
991
1017
|
## `eas credentials:configure-build`
|
|
992
1018
|
|
|
@@ -1004,7 +1030,7 @@ DESCRIPTION
|
|
|
1004
1030
|
Set up credentials for building your project.
|
|
1005
1031
|
```
|
|
1006
1032
|
|
|
1007
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1033
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1008
1034
|
|
|
1009
1035
|
## `eas deploy [options]`
|
|
1010
1036
|
|
|
@@ -1033,7 +1059,7 @@ ALIASES
|
|
|
1033
1059
|
$ eas worker:deploy
|
|
1034
1060
|
```
|
|
1035
1061
|
|
|
1036
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1062
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1037
1063
|
|
|
1038
1064
|
## `eas deploy:alias`
|
|
1039
1065
|
|
|
@@ -1058,7 +1084,7 @@ ALIASES
|
|
|
1058
1084
|
$ eas deploy:promote
|
|
1059
1085
|
```
|
|
1060
1086
|
|
|
1061
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1087
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1062
1088
|
|
|
1063
1089
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1064
1090
|
|
|
@@ -1079,7 +1105,7 @@ ALIASES
|
|
|
1079
1105
|
$ eas worker:alias:delete
|
|
1080
1106
|
```
|
|
1081
1107
|
|
|
1082
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1108
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1083
1109
|
|
|
1084
1110
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1085
1111
|
|
|
@@ -1100,7 +1126,7 @@ ALIASES
|
|
|
1100
1126
|
$ eas worker:delete
|
|
1101
1127
|
```
|
|
1102
1128
|
|
|
1103
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1129
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1104
1130
|
|
|
1105
1131
|
## `eas deploy:promote`
|
|
1106
1132
|
|
|
@@ -1137,7 +1163,7 @@ DESCRIPTION
|
|
|
1137
1163
|
register new Apple Devices to use for internal distribution
|
|
1138
1164
|
```
|
|
1139
1165
|
|
|
1140
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1166
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1141
1167
|
|
|
1142
1168
|
## `eas device:delete`
|
|
1143
1169
|
|
|
@@ -1157,7 +1183,7 @@ DESCRIPTION
|
|
|
1157
1183
|
remove a registered device from your account
|
|
1158
1184
|
```
|
|
1159
1185
|
|
|
1160
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1186
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1161
1187
|
|
|
1162
1188
|
## `eas device:list`
|
|
1163
1189
|
|
|
@@ -1178,7 +1204,7 @@ DESCRIPTION
|
|
|
1178
1204
|
list all registered devices for your account
|
|
1179
1205
|
```
|
|
1180
1206
|
|
|
1181
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1207
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1182
1208
|
|
|
1183
1209
|
## `eas device:rename`
|
|
1184
1210
|
|
|
@@ -1199,7 +1225,7 @@ DESCRIPTION
|
|
|
1199
1225
|
rename a registered device
|
|
1200
1226
|
```
|
|
1201
1227
|
|
|
1202
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1228
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1203
1229
|
|
|
1204
1230
|
## `eas device:view [UDID]`
|
|
1205
1231
|
|
|
@@ -1213,7 +1239,7 @@ DESCRIPTION
|
|
|
1213
1239
|
view a device for your project
|
|
1214
1240
|
```
|
|
1215
1241
|
|
|
1216
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1242
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1217
1243
|
|
|
1218
1244
|
## `eas diagnostics`
|
|
1219
1245
|
|
|
@@ -1227,7 +1253,7 @@ DESCRIPTION
|
|
|
1227
1253
|
display environment info
|
|
1228
1254
|
```
|
|
1229
1255
|
|
|
1230
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1256
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1231
1257
|
|
|
1232
1258
|
## `eas env:create [ENVIRONMENT]`
|
|
1233
1259
|
|
|
@@ -1259,7 +1285,7 @@ DESCRIPTION
|
|
|
1259
1285
|
create an environment variable for the current project or account
|
|
1260
1286
|
```
|
|
1261
1287
|
|
|
1262
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1288
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1263
1289
|
|
|
1264
1290
|
## `eas env:delete [ENVIRONMENT]`
|
|
1265
1291
|
|
|
@@ -1285,7 +1311,7 @@ DESCRIPTION
|
|
|
1285
1311
|
delete an environment variable for the current project or account
|
|
1286
1312
|
```
|
|
1287
1313
|
|
|
1288
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1314
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1289
1315
|
|
|
1290
1316
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1291
1317
|
|
|
@@ -1307,7 +1333,7 @@ DESCRIPTION
|
|
|
1307
1333
|
execute a command with environment variables from the selected environment
|
|
1308
1334
|
```
|
|
1309
1335
|
|
|
1310
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1336
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1311
1337
|
|
|
1312
1338
|
## `eas env:get [ENVIRONMENT]`
|
|
1313
1339
|
|
|
@@ -1335,7 +1361,7 @@ DESCRIPTION
|
|
|
1335
1361
|
view an environment variable for the current project or account
|
|
1336
1362
|
```
|
|
1337
1363
|
|
|
1338
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1364
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1339
1365
|
|
|
1340
1366
|
## `eas env:list [ENVIRONMENT]`
|
|
1341
1367
|
|
|
@@ -1363,7 +1389,7 @@ DESCRIPTION
|
|
|
1363
1389
|
list environment variables for the current project or account
|
|
1364
1390
|
```
|
|
1365
1391
|
|
|
1366
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1392
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1367
1393
|
|
|
1368
1394
|
## `eas env:pull [ENVIRONMENT]`
|
|
1369
1395
|
|
|
@@ -1386,7 +1412,7 @@ DESCRIPTION
|
|
|
1386
1412
|
pull environment variables for the selected environment to .env file
|
|
1387
1413
|
```
|
|
1388
1414
|
|
|
1389
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1415
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1390
1416
|
|
|
1391
1417
|
## `eas env:push [ENVIRONMENT]`
|
|
1392
1418
|
|
|
@@ -1408,7 +1434,7 @@ DESCRIPTION
|
|
|
1408
1434
|
push environment variables from .env file to the selected environment
|
|
1409
1435
|
```
|
|
1410
1436
|
|
|
1411
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1437
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1412
1438
|
|
|
1413
1439
|
## `eas env:update [ENVIRONMENT]`
|
|
1414
1440
|
|
|
@@ -1442,7 +1468,7 @@ DESCRIPTION
|
|
|
1442
1468
|
update an environment variable on the current project or account
|
|
1443
1469
|
```
|
|
1444
1470
|
|
|
1445
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1471
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1446
1472
|
|
|
1447
1473
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1448
1474
|
|
|
@@ -1486,7 +1512,7 @@ EXAMPLES
|
|
|
1486
1512
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1487
1513
|
```
|
|
1488
1514
|
|
|
1489
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1515
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1490
1516
|
|
|
1491
1517
|
## `eas fingerprint:generate`
|
|
1492
1518
|
|
|
@@ -1517,7 +1543,7 @@ EXAMPLES
|
|
|
1517
1543
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1518
1544
|
```
|
|
1519
1545
|
|
|
1520
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1546
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1521
1547
|
|
|
1522
1548
|
## `eas help [COMMAND]`
|
|
1523
1549
|
|
|
@@ -1626,7 +1652,7 @@ DESCRIPTION
|
|
|
1626
1652
|
validate the local store configuration
|
|
1627
1653
|
```
|
|
1628
1654
|
|
|
1629
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1655
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1630
1656
|
|
|
1631
1657
|
## `eas metadata:pull`
|
|
1632
1658
|
|
|
@@ -1644,7 +1670,7 @@ DESCRIPTION
|
|
|
1644
1670
|
generate the local store configuration from the app stores
|
|
1645
1671
|
```
|
|
1646
1672
|
|
|
1647
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1673
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1648
1674
|
|
|
1649
1675
|
## `eas metadata:push`
|
|
1650
1676
|
|
|
@@ -1662,7 +1688,7 @@ DESCRIPTION
|
|
|
1662
1688
|
sync the local store configuration to the app stores
|
|
1663
1689
|
```
|
|
1664
1690
|
|
|
1665
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1691
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1666
1692
|
|
|
1667
1693
|
## `eas new [PATH]`
|
|
1668
1694
|
|
|
@@ -1714,7 +1740,7 @@ DESCRIPTION
|
|
|
1714
1740
|
open the project page in a web browser
|
|
1715
1741
|
```
|
|
1716
1742
|
|
|
1717
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1743
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/open.ts)_
|
|
1718
1744
|
|
|
1719
1745
|
## `eas project:info`
|
|
1720
1746
|
|
|
@@ -1728,7 +1754,7 @@ DESCRIPTION
|
|
|
1728
1754
|
information about the current project
|
|
1729
1755
|
```
|
|
1730
1756
|
|
|
1731
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1757
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1732
1758
|
|
|
1733
1759
|
## `eas project:init`
|
|
1734
1760
|
|
|
@@ -1751,7 +1777,7 @@ ALIASES
|
|
|
1751
1777
|
$ eas init
|
|
1752
1778
|
```
|
|
1753
1779
|
|
|
1754
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1780
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1755
1781
|
|
|
1756
1782
|
## `eas project:new [PATH]`
|
|
1757
1783
|
|
|
@@ -1775,7 +1801,7 @@ ALIASES
|
|
|
1775
1801
|
$ eas new
|
|
1776
1802
|
```
|
|
1777
1803
|
|
|
1778
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1804
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1779
1805
|
|
|
1780
1806
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1781
1807
|
|
|
@@ -1793,7 +1819,7 @@ ALIASES
|
|
|
1793
1819
|
$ eas onboarding
|
|
1794
1820
|
```
|
|
1795
1821
|
|
|
1796
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1822
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1797
1823
|
|
|
1798
1824
|
## `eas submit`
|
|
1799
1825
|
|
|
@@ -1826,7 +1852,7 @@ ALIASES
|
|
|
1826
1852
|
$ eas build:submit
|
|
1827
1853
|
```
|
|
1828
1854
|
|
|
1829
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1855
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1830
1856
|
|
|
1831
1857
|
## `eas update`
|
|
1832
1858
|
|
|
@@ -1869,7 +1895,7 @@ DESCRIPTION
|
|
|
1869
1895
|
publish an update group
|
|
1870
1896
|
```
|
|
1871
1897
|
|
|
1872
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1898
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1873
1899
|
|
|
1874
1900
|
## `eas update:configure`
|
|
1875
1901
|
|
|
@@ -1890,7 +1916,7 @@ DESCRIPTION
|
|
|
1890
1916
|
configure the project to support EAS Update
|
|
1891
1917
|
```
|
|
1892
1918
|
|
|
1893
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1919
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1894
1920
|
|
|
1895
1921
|
## `eas update:delete GROUPID`
|
|
1896
1922
|
|
|
@@ -1911,7 +1937,7 @@ DESCRIPTION
|
|
|
1911
1937
|
delete all the updates in an update group
|
|
1912
1938
|
```
|
|
1913
1939
|
|
|
1914
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1940
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1915
1941
|
|
|
1916
1942
|
## `eas update:edit [GROUPID]`
|
|
1917
1943
|
|
|
@@ -1936,7 +1962,34 @@ DESCRIPTION
|
|
|
1936
1962
|
edit all the updates in an update group
|
|
1937
1963
|
```
|
|
1938
1964
|
|
|
1939
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1965
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1966
|
+
|
|
1967
|
+
## `eas update:insights GROUPID`
|
|
1968
|
+
|
|
1969
|
+
display launch, crash, unique-user, and size insights for an update group
|
|
1970
|
+
|
|
1971
|
+
```
|
|
1972
|
+
USAGE
|
|
1973
|
+
$ eas update:insights GROUPID [--platform ios|android] [--days <value> | --start <value> | --end <value>] [--json]
|
|
1974
|
+
[--non-interactive]
|
|
1975
|
+
|
|
1976
|
+
ARGUMENTS
|
|
1977
|
+
GROUPID The ID of an update group.
|
|
1978
|
+
|
|
1979
|
+
FLAGS
|
|
1980
|
+
--days=<value> Show insights from the last N days (default 7, mutually exclusive with --start/--end).
|
|
1981
|
+
--end=<value> End of insights time range (ISO date).
|
|
1982
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1983
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1984
|
+
--platform=<option> Filter to a single platform.
|
|
1985
|
+
<options: ios|android>
|
|
1986
|
+
--start=<value> Start of insights time range (ISO date).
|
|
1987
|
+
|
|
1988
|
+
DESCRIPTION
|
|
1989
|
+
display launch, crash, unique-user, and size insights for an update group
|
|
1990
|
+
```
|
|
1991
|
+
|
|
1992
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
1940
1993
|
|
|
1941
1994
|
## `eas update:list`
|
|
1942
1995
|
|
|
@@ -1963,7 +2016,7 @@ DESCRIPTION
|
|
|
1963
2016
|
view the recent updates
|
|
1964
2017
|
```
|
|
1965
2018
|
|
|
1966
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2019
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1967
2020
|
|
|
1968
2021
|
## `eas update:republish`
|
|
1969
2022
|
|
|
@@ -2001,7 +2054,7 @@ DESCRIPTION
|
|
|
2001
2054
|
roll back to an existing update
|
|
2002
2055
|
```
|
|
2003
2056
|
|
|
2004
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2057
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2005
2058
|
|
|
2006
2059
|
## `eas update:revert-update-rollout`
|
|
2007
2060
|
|
|
@@ -2029,7 +2082,7 @@ DESCRIPTION
|
|
|
2029
2082
|
revert a rollout update for a project
|
|
2030
2083
|
```
|
|
2031
2084
|
|
|
2032
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2085
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2033
2086
|
|
|
2034
2087
|
## `eas update:roll-back-to-embedded`
|
|
2035
2088
|
|
|
@@ -2059,7 +2112,7 @@ DESCRIPTION
|
|
|
2059
2112
|
roll back to the embedded update
|
|
2060
2113
|
```
|
|
2061
2114
|
|
|
2062
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2115
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2063
2116
|
|
|
2064
2117
|
## `eas update:rollback`
|
|
2065
2118
|
|
|
@@ -2080,7 +2133,7 @@ DESCRIPTION
|
|
|
2080
2133
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2081
2134
|
```
|
|
2082
2135
|
|
|
2083
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2136
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2084
2137
|
|
|
2085
2138
|
## `eas update:view GROUPID`
|
|
2086
2139
|
|
|
@@ -2088,19 +2141,23 @@ update group details
|
|
|
2088
2141
|
|
|
2089
2142
|
```
|
|
2090
2143
|
USAGE
|
|
2091
|
-
$ eas update:view GROUPID [--json]
|
|
2144
|
+
$ eas update:view GROUPID [--insights] [--days <value> | --start <value> | --end <value>] [--json]
|
|
2092
2145
|
|
|
2093
2146
|
ARGUMENTS
|
|
2094
2147
|
GROUPID The ID of an update group.
|
|
2095
2148
|
|
|
2096
2149
|
FLAGS
|
|
2097
|
-
--
|
|
2150
|
+
--days=<value> Show insights from the last N days (default 7). Only used with --insights.
|
|
2151
|
+
--end=<value> End of insights time range (ISO date). Only used with --insights.
|
|
2152
|
+
--insights Also show insights (launches, crash rate, unique users, payload size) for the update group.
|
|
2153
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2154
|
+
--start=<value> Start of insights time range (ISO date). Only used with --insights.
|
|
2098
2155
|
|
|
2099
2156
|
DESCRIPTION
|
|
2100
2157
|
update group details
|
|
2101
2158
|
```
|
|
2102
2159
|
|
|
2103
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2160
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2104
2161
|
|
|
2105
2162
|
## `eas upload`
|
|
2106
2163
|
|
|
@@ -2121,7 +2178,7 @@ DESCRIPTION
|
|
|
2121
2178
|
upload a local build and generate a sharable link
|
|
2122
2179
|
```
|
|
2123
2180
|
|
|
2124
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2181
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2125
2182
|
|
|
2126
2183
|
## `eas webhook:create`
|
|
2127
2184
|
|
|
@@ -2143,7 +2200,7 @@ DESCRIPTION
|
|
|
2143
2200
|
create a webhook
|
|
2144
2201
|
```
|
|
2145
2202
|
|
|
2146
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2203
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2147
2204
|
|
|
2148
2205
|
## `eas webhook:delete [ID]`
|
|
2149
2206
|
|
|
@@ -2163,7 +2220,7 @@ DESCRIPTION
|
|
|
2163
2220
|
delete a webhook
|
|
2164
2221
|
```
|
|
2165
2222
|
|
|
2166
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2223
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2167
2224
|
|
|
2168
2225
|
## `eas webhook:list`
|
|
2169
2226
|
|
|
@@ -2182,7 +2239,7 @@ DESCRIPTION
|
|
|
2182
2239
|
list webhooks
|
|
2183
2240
|
```
|
|
2184
2241
|
|
|
2185
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2242
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2186
2243
|
|
|
2187
2244
|
## `eas webhook:update`
|
|
2188
2245
|
|
|
@@ -2205,7 +2262,7 @@ DESCRIPTION
|
|
|
2205
2262
|
update a webhook
|
|
2206
2263
|
```
|
|
2207
2264
|
|
|
2208
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2265
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2209
2266
|
|
|
2210
2267
|
## `eas webhook:view ID`
|
|
2211
2268
|
|
|
@@ -2222,7 +2279,7 @@ DESCRIPTION
|
|
|
2222
2279
|
view a webhook
|
|
2223
2280
|
```
|
|
2224
2281
|
|
|
2225
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2282
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2226
2283
|
|
|
2227
2284
|
## `eas whoami`
|
|
2228
2285
|
|
|
@@ -2343,7 +2400,7 @@ DESCRIPTION
|
|
|
2343
2400
|
to cancel.
|
|
2344
2401
|
```
|
|
2345
2402
|
|
|
2346
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2403
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2347
2404
|
|
|
2348
2405
|
## `eas workflow:create [NAME]`
|
|
2349
2406
|
|
|
@@ -2363,7 +2420,7 @@ DESCRIPTION
|
|
|
2363
2420
|
create a new workflow configuration YAML file
|
|
2364
2421
|
```
|
|
2365
2422
|
|
|
2366
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2423
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2367
2424
|
|
|
2368
2425
|
## `eas workflow:logs [ID]`
|
|
2369
2426
|
|
|
@@ -2387,7 +2444,7 @@ DESCRIPTION
|
|
|
2387
2444
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2388
2445
|
```
|
|
2389
2446
|
|
|
2390
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2447
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2391
2448
|
|
|
2392
2449
|
## `eas workflow:run FILE`
|
|
2393
2450
|
|
|
@@ -2427,7 +2484,7 @@ FLAG DESCRIPTIONS
|
|
|
2427
2484
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2428
2485
|
```
|
|
2429
2486
|
|
|
2430
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2487
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2431
2488
|
|
|
2432
2489
|
## `eas workflow:runs`
|
|
2433
2490
|
|
|
@@ -2449,7 +2506,7 @@ DESCRIPTION
|
|
|
2449
2506
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2450
2507
|
```
|
|
2451
2508
|
|
|
2452
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2509
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2453
2510
|
|
|
2454
2511
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2455
2512
|
|
|
@@ -2477,7 +2534,7 @@ FLAG DESCRIPTIONS
|
|
|
2477
2534
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2478
2535
|
```
|
|
2479
2536
|
|
|
2480
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2537
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2481
2538
|
|
|
2482
2539
|
## `eas workflow:validate PATH`
|
|
2483
2540
|
|
|
@@ -2497,7 +2554,7 @@ DESCRIPTION
|
|
|
2497
2554
|
validate a workflow configuration yaml file
|
|
2498
2555
|
```
|
|
2499
2556
|
|
|
2500
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2557
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2501
2558
|
|
|
2502
2559
|
## `eas workflow:view [ID]`
|
|
2503
2560
|
|
|
@@ -2519,5 +2576,5 @@ DESCRIPTION
|
|
|
2519
2576
|
workflow runs for the current project.
|
|
2520
2577
|
```
|
|
2521
2578
|
|
|
2522
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2579
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.8.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2523
2580
|
<!-- commandsstop -->
|