eas-cli 18.6.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 +149 -91
- package/build/channel/insights/formatInsights.d.ts +47 -0
- package/build/channel/insights/formatInsights.js +108 -0
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +10 -2
- 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 +773 -469
- 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
|
|
|
@@ -488,7 +490,7 @@ run dev client simulator/emulator build with matching fingerprint or create a ne
|
|
|
488
490
|
|
|
489
491
|
```
|
|
490
492
|
USAGE
|
|
491
|
-
$ eas build:dev [-p ios|android] [-e PROFILE_NAME] [--skip-build-if-not-found]
|
|
493
|
+
$ eas build:dev [-p ios|android] [-e PROFILE_NAME] [--skip-build-if-not-found] [--skip-bundler]
|
|
492
494
|
|
|
493
495
|
FLAGS
|
|
494
496
|
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. It must be a profile allowing to create
|
|
@@ -496,12 +498,13 @@ FLAGS
|
|
|
496
498
|
build profile will be selected by default.
|
|
497
499
|
-p, --platform=<option> <options: ios|android>
|
|
498
500
|
--skip-build-if-not-found Skip build if no successful build with matching fingerprint is found.
|
|
501
|
+
--skip-bundler Install and run the development build without starting the bundler server.
|
|
499
502
|
|
|
500
503
|
DESCRIPTION
|
|
501
504
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
502
505
|
```
|
|
503
506
|
|
|
504
|
-
_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)_
|
|
505
508
|
|
|
506
509
|
## `eas build:download`
|
|
507
510
|
|
|
@@ -522,7 +525,7 @@ DESCRIPTION
|
|
|
522
525
|
download simulator/emulator builds for a given fingerprint hash
|
|
523
526
|
```
|
|
524
527
|
|
|
525
|
-
_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)_
|
|
526
529
|
|
|
527
530
|
## `eas build:inspect`
|
|
528
531
|
|
|
@@ -560,7 +563,7 @@ DESCRIPTION
|
|
|
560
563
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
561
564
|
```
|
|
562
565
|
|
|
563
|
-
_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)_
|
|
564
567
|
|
|
565
568
|
## `eas build:list`
|
|
566
569
|
|
|
@@ -600,7 +603,7 @@ DESCRIPTION
|
|
|
600
603
|
list all builds for your project
|
|
601
604
|
```
|
|
602
605
|
|
|
603
|
-
_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)_
|
|
604
607
|
|
|
605
608
|
## `eas build:resign`
|
|
606
609
|
|
|
@@ -630,7 +633,7 @@ DESCRIPTION
|
|
|
630
633
|
re-sign a build archive
|
|
631
634
|
```
|
|
632
635
|
|
|
633
|
-
_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)_
|
|
634
637
|
|
|
635
638
|
## `eas build:run`
|
|
636
639
|
|
|
@@ -656,7 +659,7 @@ DESCRIPTION
|
|
|
656
659
|
run simulator/emulator builds from eas-cli
|
|
657
660
|
```
|
|
658
661
|
|
|
659
|
-
_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)_
|
|
660
663
|
|
|
661
664
|
## `eas build:submit`
|
|
662
665
|
|
|
@@ -708,7 +711,7 @@ DESCRIPTION
|
|
|
708
711
|
get the latest version from EAS servers
|
|
709
712
|
```
|
|
710
713
|
|
|
711
|
-
_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)_
|
|
712
715
|
|
|
713
716
|
## `eas build:version:set`
|
|
714
717
|
|
|
@@ -726,7 +729,7 @@ DESCRIPTION
|
|
|
726
729
|
update version of an app
|
|
727
730
|
```
|
|
728
731
|
|
|
729
|
-
_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)_
|
|
730
733
|
|
|
731
734
|
## `eas build:version:sync`
|
|
732
735
|
|
|
@@ -744,7 +747,7 @@ DESCRIPTION
|
|
|
744
747
|
update a version in native code with a value stored on EAS servers
|
|
745
748
|
```
|
|
746
749
|
|
|
747
|
-
_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)_
|
|
748
751
|
|
|
749
752
|
## `eas build:view [BUILD_ID]`
|
|
750
753
|
|
|
@@ -761,7 +764,7 @@ DESCRIPTION
|
|
|
761
764
|
view a build for your project
|
|
762
765
|
```
|
|
763
766
|
|
|
764
|
-
_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)_
|
|
765
768
|
|
|
766
769
|
## `eas channel:create [NAME]`
|
|
767
770
|
|
|
@@ -782,7 +785,7 @@ DESCRIPTION
|
|
|
782
785
|
create a channel
|
|
783
786
|
```
|
|
784
787
|
|
|
785
|
-
_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)_
|
|
786
789
|
|
|
787
790
|
## `eas channel:delete [NAME]`
|
|
788
791
|
|
|
@@ -803,7 +806,7 @@ DESCRIPTION
|
|
|
803
806
|
Delete a channel
|
|
804
807
|
```
|
|
805
808
|
|
|
806
|
-
_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)_
|
|
807
810
|
|
|
808
811
|
## `eas channel:edit [NAME]`
|
|
809
812
|
|
|
@@ -825,7 +828,31 @@ DESCRIPTION
|
|
|
825
828
|
point a channel at a new branch
|
|
826
829
|
```
|
|
827
830
|
|
|
828
|
-
_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)_
|
|
829
856
|
|
|
830
857
|
## `eas channel:list`
|
|
831
858
|
|
|
@@ -845,7 +872,7 @@ DESCRIPTION
|
|
|
845
872
|
list all channels
|
|
846
873
|
```
|
|
847
874
|
|
|
848
|
-
_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)_
|
|
849
876
|
|
|
850
877
|
## `eas channel:pause [NAME]`
|
|
851
878
|
|
|
@@ -867,7 +894,7 @@ DESCRIPTION
|
|
|
867
894
|
pause a channel to stop it from sending updates
|
|
868
895
|
```
|
|
869
896
|
|
|
870
|
-
_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)_
|
|
871
898
|
|
|
872
899
|
## `eas channel:resume [NAME]`
|
|
873
900
|
|
|
@@ -889,7 +916,7 @@ DESCRIPTION
|
|
|
889
916
|
resume a channel to start sending updates
|
|
890
917
|
```
|
|
891
918
|
|
|
892
|
-
_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)_
|
|
893
920
|
|
|
894
921
|
## `eas channel:rollout [CHANNEL]`
|
|
895
922
|
|
|
@@ -924,7 +951,7 @@ DESCRIPTION
|
|
|
924
951
|
Roll a new branch out on a channel incrementally.
|
|
925
952
|
```
|
|
926
953
|
|
|
927
|
-
_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)_
|
|
928
955
|
|
|
929
956
|
## `eas channel:view [NAME]`
|
|
930
957
|
|
|
@@ -947,7 +974,7 @@ DESCRIPTION
|
|
|
947
974
|
view a channel
|
|
948
975
|
```
|
|
949
976
|
|
|
950
|
-
_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)_
|
|
951
978
|
|
|
952
979
|
## `eas config`
|
|
953
980
|
|
|
@@ -968,7 +995,7 @@ DESCRIPTION
|
|
|
968
995
|
display project configuration (app.json + eas.json)
|
|
969
996
|
```
|
|
970
997
|
|
|
971
|
-
_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)_
|
|
972
999
|
|
|
973
1000
|
## `eas credentials`
|
|
974
1001
|
|
|
@@ -985,7 +1012,7 @@ DESCRIPTION
|
|
|
985
1012
|
manage credentials
|
|
986
1013
|
```
|
|
987
1014
|
|
|
988
|
-
_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)_
|
|
989
1016
|
|
|
990
1017
|
## `eas credentials:configure-build`
|
|
991
1018
|
|
|
@@ -1003,7 +1030,7 @@ DESCRIPTION
|
|
|
1003
1030
|
Set up credentials for building your project.
|
|
1004
1031
|
```
|
|
1005
1032
|
|
|
1006
|
-
_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)_
|
|
1007
1034
|
|
|
1008
1035
|
## `eas deploy [options]`
|
|
1009
1036
|
|
|
@@ -1032,7 +1059,7 @@ ALIASES
|
|
|
1032
1059
|
$ eas worker:deploy
|
|
1033
1060
|
```
|
|
1034
1061
|
|
|
1035
|
-
_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)_
|
|
1036
1063
|
|
|
1037
1064
|
## `eas deploy:alias`
|
|
1038
1065
|
|
|
@@ -1057,7 +1084,7 @@ ALIASES
|
|
|
1057
1084
|
$ eas deploy:promote
|
|
1058
1085
|
```
|
|
1059
1086
|
|
|
1060
|
-
_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)_
|
|
1061
1088
|
|
|
1062
1089
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1063
1090
|
|
|
@@ -1078,7 +1105,7 @@ ALIASES
|
|
|
1078
1105
|
$ eas worker:alias:delete
|
|
1079
1106
|
```
|
|
1080
1107
|
|
|
1081
|
-
_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)_
|
|
1082
1109
|
|
|
1083
1110
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1084
1111
|
|
|
@@ -1099,7 +1126,7 @@ ALIASES
|
|
|
1099
1126
|
$ eas worker:delete
|
|
1100
1127
|
```
|
|
1101
1128
|
|
|
1102
|
-
_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)_
|
|
1103
1130
|
|
|
1104
1131
|
## `eas deploy:promote`
|
|
1105
1132
|
|
|
@@ -1136,7 +1163,7 @@ DESCRIPTION
|
|
|
1136
1163
|
register new Apple Devices to use for internal distribution
|
|
1137
1164
|
```
|
|
1138
1165
|
|
|
1139
|
-
_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)_
|
|
1140
1167
|
|
|
1141
1168
|
## `eas device:delete`
|
|
1142
1169
|
|
|
@@ -1156,7 +1183,7 @@ DESCRIPTION
|
|
|
1156
1183
|
remove a registered device from your account
|
|
1157
1184
|
```
|
|
1158
1185
|
|
|
1159
|
-
_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)_
|
|
1160
1187
|
|
|
1161
1188
|
## `eas device:list`
|
|
1162
1189
|
|
|
@@ -1177,7 +1204,7 @@ DESCRIPTION
|
|
|
1177
1204
|
list all registered devices for your account
|
|
1178
1205
|
```
|
|
1179
1206
|
|
|
1180
|
-
_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)_
|
|
1181
1208
|
|
|
1182
1209
|
## `eas device:rename`
|
|
1183
1210
|
|
|
@@ -1198,7 +1225,7 @@ DESCRIPTION
|
|
|
1198
1225
|
rename a registered device
|
|
1199
1226
|
```
|
|
1200
1227
|
|
|
1201
|
-
_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)_
|
|
1202
1229
|
|
|
1203
1230
|
## `eas device:view [UDID]`
|
|
1204
1231
|
|
|
@@ -1212,7 +1239,7 @@ DESCRIPTION
|
|
|
1212
1239
|
view a device for your project
|
|
1213
1240
|
```
|
|
1214
1241
|
|
|
1215
|
-
_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)_
|
|
1216
1243
|
|
|
1217
1244
|
## `eas diagnostics`
|
|
1218
1245
|
|
|
@@ -1226,7 +1253,7 @@ DESCRIPTION
|
|
|
1226
1253
|
display environment info
|
|
1227
1254
|
```
|
|
1228
1255
|
|
|
1229
|
-
_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)_
|
|
1230
1257
|
|
|
1231
1258
|
## `eas env:create [ENVIRONMENT]`
|
|
1232
1259
|
|
|
@@ -1258,7 +1285,7 @@ DESCRIPTION
|
|
|
1258
1285
|
create an environment variable for the current project or account
|
|
1259
1286
|
```
|
|
1260
1287
|
|
|
1261
|
-
_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)_
|
|
1262
1289
|
|
|
1263
1290
|
## `eas env:delete [ENVIRONMENT]`
|
|
1264
1291
|
|
|
@@ -1284,7 +1311,7 @@ DESCRIPTION
|
|
|
1284
1311
|
delete an environment variable for the current project or account
|
|
1285
1312
|
```
|
|
1286
1313
|
|
|
1287
|
-
_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)_
|
|
1288
1315
|
|
|
1289
1316
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1290
1317
|
|
|
@@ -1306,7 +1333,7 @@ DESCRIPTION
|
|
|
1306
1333
|
execute a command with environment variables from the selected environment
|
|
1307
1334
|
```
|
|
1308
1335
|
|
|
1309
|
-
_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)_
|
|
1310
1337
|
|
|
1311
1338
|
## `eas env:get [ENVIRONMENT]`
|
|
1312
1339
|
|
|
@@ -1334,7 +1361,7 @@ DESCRIPTION
|
|
|
1334
1361
|
view an environment variable for the current project or account
|
|
1335
1362
|
```
|
|
1336
1363
|
|
|
1337
|
-
_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)_
|
|
1338
1365
|
|
|
1339
1366
|
## `eas env:list [ENVIRONMENT]`
|
|
1340
1367
|
|
|
@@ -1362,7 +1389,7 @@ DESCRIPTION
|
|
|
1362
1389
|
list environment variables for the current project or account
|
|
1363
1390
|
```
|
|
1364
1391
|
|
|
1365
|
-
_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)_
|
|
1366
1393
|
|
|
1367
1394
|
## `eas env:pull [ENVIRONMENT]`
|
|
1368
1395
|
|
|
@@ -1385,7 +1412,7 @@ DESCRIPTION
|
|
|
1385
1412
|
pull environment variables for the selected environment to .env file
|
|
1386
1413
|
```
|
|
1387
1414
|
|
|
1388
|
-
_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)_
|
|
1389
1416
|
|
|
1390
1417
|
## `eas env:push [ENVIRONMENT]`
|
|
1391
1418
|
|
|
@@ -1407,7 +1434,7 @@ DESCRIPTION
|
|
|
1407
1434
|
push environment variables from .env file to the selected environment
|
|
1408
1435
|
```
|
|
1409
1436
|
|
|
1410
|
-
_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)_
|
|
1411
1438
|
|
|
1412
1439
|
## `eas env:update [ENVIRONMENT]`
|
|
1413
1440
|
|
|
@@ -1441,7 +1468,7 @@ DESCRIPTION
|
|
|
1441
1468
|
update an environment variable on the current project or account
|
|
1442
1469
|
```
|
|
1443
1470
|
|
|
1444
|
-
_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)_
|
|
1445
1472
|
|
|
1446
1473
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1447
1474
|
|
|
@@ -1485,7 +1512,7 @@ EXAMPLES
|
|
|
1485
1512
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1486
1513
|
```
|
|
1487
1514
|
|
|
1488
|
-
_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)_
|
|
1489
1516
|
|
|
1490
1517
|
## `eas fingerprint:generate`
|
|
1491
1518
|
|
|
@@ -1516,7 +1543,7 @@ EXAMPLES
|
|
|
1516
1543
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1517
1544
|
```
|
|
1518
1545
|
|
|
1519
|
-
_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)_
|
|
1520
1547
|
|
|
1521
1548
|
## `eas help [COMMAND]`
|
|
1522
1549
|
|
|
@@ -1625,7 +1652,7 @@ DESCRIPTION
|
|
|
1625
1652
|
validate the local store configuration
|
|
1626
1653
|
```
|
|
1627
1654
|
|
|
1628
|
-
_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)_
|
|
1629
1656
|
|
|
1630
1657
|
## `eas metadata:pull`
|
|
1631
1658
|
|
|
@@ -1643,7 +1670,7 @@ DESCRIPTION
|
|
|
1643
1670
|
generate the local store configuration from the app stores
|
|
1644
1671
|
```
|
|
1645
1672
|
|
|
1646
|
-
_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)_
|
|
1647
1674
|
|
|
1648
1675
|
## `eas metadata:push`
|
|
1649
1676
|
|
|
@@ -1661,7 +1688,7 @@ DESCRIPTION
|
|
|
1661
1688
|
sync the local store configuration to the app stores
|
|
1662
1689
|
```
|
|
1663
1690
|
|
|
1664
|
-
_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)_
|
|
1665
1692
|
|
|
1666
1693
|
## `eas new [PATH]`
|
|
1667
1694
|
|
|
@@ -1713,7 +1740,7 @@ DESCRIPTION
|
|
|
1713
1740
|
open the project page in a web browser
|
|
1714
1741
|
```
|
|
1715
1742
|
|
|
1716
|
-
_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)_
|
|
1717
1744
|
|
|
1718
1745
|
## `eas project:info`
|
|
1719
1746
|
|
|
@@ -1727,7 +1754,7 @@ DESCRIPTION
|
|
|
1727
1754
|
information about the current project
|
|
1728
1755
|
```
|
|
1729
1756
|
|
|
1730
|
-
_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)_
|
|
1731
1758
|
|
|
1732
1759
|
## `eas project:init`
|
|
1733
1760
|
|
|
@@ -1750,7 +1777,7 @@ ALIASES
|
|
|
1750
1777
|
$ eas init
|
|
1751
1778
|
```
|
|
1752
1779
|
|
|
1753
|
-
_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)_
|
|
1754
1781
|
|
|
1755
1782
|
## `eas project:new [PATH]`
|
|
1756
1783
|
|
|
@@ -1774,7 +1801,7 @@ ALIASES
|
|
|
1774
1801
|
$ eas new
|
|
1775
1802
|
```
|
|
1776
1803
|
|
|
1777
|
-
_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)_
|
|
1778
1805
|
|
|
1779
1806
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1780
1807
|
|
|
@@ -1792,7 +1819,7 @@ ALIASES
|
|
|
1792
1819
|
$ eas onboarding
|
|
1793
1820
|
```
|
|
1794
1821
|
|
|
1795
|
-
_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)_
|
|
1796
1823
|
|
|
1797
1824
|
## `eas submit`
|
|
1798
1825
|
|
|
@@ -1825,7 +1852,7 @@ ALIASES
|
|
|
1825
1852
|
$ eas build:submit
|
|
1826
1853
|
```
|
|
1827
1854
|
|
|
1828
|
-
_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)_
|
|
1829
1856
|
|
|
1830
1857
|
## `eas update`
|
|
1831
1858
|
|
|
@@ -1868,7 +1895,7 @@ DESCRIPTION
|
|
|
1868
1895
|
publish an update group
|
|
1869
1896
|
```
|
|
1870
1897
|
|
|
1871
|
-
_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)_
|
|
1872
1899
|
|
|
1873
1900
|
## `eas update:configure`
|
|
1874
1901
|
|
|
@@ -1889,7 +1916,7 @@ DESCRIPTION
|
|
|
1889
1916
|
configure the project to support EAS Update
|
|
1890
1917
|
```
|
|
1891
1918
|
|
|
1892
|
-
_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)_
|
|
1893
1920
|
|
|
1894
1921
|
## `eas update:delete GROUPID`
|
|
1895
1922
|
|
|
@@ -1910,7 +1937,7 @@ DESCRIPTION
|
|
|
1910
1937
|
delete all the updates in an update group
|
|
1911
1938
|
```
|
|
1912
1939
|
|
|
1913
|
-
_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)_
|
|
1914
1941
|
|
|
1915
1942
|
## `eas update:edit [GROUPID]`
|
|
1916
1943
|
|
|
@@ -1935,7 +1962,34 @@ DESCRIPTION
|
|
|
1935
1962
|
edit all the updates in an update group
|
|
1936
1963
|
```
|
|
1937
1964
|
|
|
1938
|
-
_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)_
|
|
1939
1993
|
|
|
1940
1994
|
## `eas update:list`
|
|
1941
1995
|
|
|
@@ -1962,7 +2016,7 @@ DESCRIPTION
|
|
|
1962
2016
|
view the recent updates
|
|
1963
2017
|
```
|
|
1964
2018
|
|
|
1965
|
-
_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)_
|
|
1966
2020
|
|
|
1967
2021
|
## `eas update:republish`
|
|
1968
2022
|
|
|
@@ -2000,7 +2054,7 @@ DESCRIPTION
|
|
|
2000
2054
|
roll back to an existing update
|
|
2001
2055
|
```
|
|
2002
2056
|
|
|
2003
|
-
_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)_
|
|
2004
2058
|
|
|
2005
2059
|
## `eas update:revert-update-rollout`
|
|
2006
2060
|
|
|
@@ -2028,7 +2082,7 @@ DESCRIPTION
|
|
|
2028
2082
|
revert a rollout update for a project
|
|
2029
2083
|
```
|
|
2030
2084
|
|
|
2031
|
-
_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)_
|
|
2032
2086
|
|
|
2033
2087
|
## `eas update:roll-back-to-embedded`
|
|
2034
2088
|
|
|
@@ -2058,7 +2112,7 @@ DESCRIPTION
|
|
|
2058
2112
|
roll back to the embedded update
|
|
2059
2113
|
```
|
|
2060
2114
|
|
|
2061
|
-
_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)_
|
|
2062
2116
|
|
|
2063
2117
|
## `eas update:rollback`
|
|
2064
2118
|
|
|
@@ -2079,7 +2133,7 @@ DESCRIPTION
|
|
|
2079
2133
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2080
2134
|
```
|
|
2081
2135
|
|
|
2082
|
-
_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)_
|
|
2083
2137
|
|
|
2084
2138
|
## `eas update:view GROUPID`
|
|
2085
2139
|
|
|
@@ -2087,19 +2141,23 @@ update group details
|
|
|
2087
2141
|
|
|
2088
2142
|
```
|
|
2089
2143
|
USAGE
|
|
2090
|
-
$ eas update:view GROUPID [--json]
|
|
2144
|
+
$ eas update:view GROUPID [--insights] [--days <value> | --start <value> | --end <value>] [--json]
|
|
2091
2145
|
|
|
2092
2146
|
ARGUMENTS
|
|
2093
2147
|
GROUPID The ID of an update group.
|
|
2094
2148
|
|
|
2095
2149
|
FLAGS
|
|
2096
|
-
--
|
|
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.
|
|
2097
2155
|
|
|
2098
2156
|
DESCRIPTION
|
|
2099
2157
|
update group details
|
|
2100
2158
|
```
|
|
2101
2159
|
|
|
2102
|
-
_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)_
|
|
2103
2161
|
|
|
2104
2162
|
## `eas upload`
|
|
2105
2163
|
|
|
@@ -2120,7 +2178,7 @@ DESCRIPTION
|
|
|
2120
2178
|
upload a local build and generate a sharable link
|
|
2121
2179
|
```
|
|
2122
2180
|
|
|
2123
|
-
_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)_
|
|
2124
2182
|
|
|
2125
2183
|
## `eas webhook:create`
|
|
2126
2184
|
|
|
@@ -2142,7 +2200,7 @@ DESCRIPTION
|
|
|
2142
2200
|
create a webhook
|
|
2143
2201
|
```
|
|
2144
2202
|
|
|
2145
|
-
_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)_
|
|
2146
2204
|
|
|
2147
2205
|
## `eas webhook:delete [ID]`
|
|
2148
2206
|
|
|
@@ -2162,7 +2220,7 @@ DESCRIPTION
|
|
|
2162
2220
|
delete a webhook
|
|
2163
2221
|
```
|
|
2164
2222
|
|
|
2165
|
-
_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)_
|
|
2166
2224
|
|
|
2167
2225
|
## `eas webhook:list`
|
|
2168
2226
|
|
|
@@ -2181,7 +2239,7 @@ DESCRIPTION
|
|
|
2181
2239
|
list webhooks
|
|
2182
2240
|
```
|
|
2183
2241
|
|
|
2184
|
-
_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)_
|
|
2185
2243
|
|
|
2186
2244
|
## `eas webhook:update`
|
|
2187
2245
|
|
|
@@ -2204,7 +2262,7 @@ DESCRIPTION
|
|
|
2204
2262
|
update a webhook
|
|
2205
2263
|
```
|
|
2206
2264
|
|
|
2207
|
-
_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)_
|
|
2208
2266
|
|
|
2209
2267
|
## `eas webhook:view ID`
|
|
2210
2268
|
|
|
@@ -2221,7 +2279,7 @@ DESCRIPTION
|
|
|
2221
2279
|
view a webhook
|
|
2222
2280
|
```
|
|
2223
2281
|
|
|
2224
|
-
_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)_
|
|
2225
2283
|
|
|
2226
2284
|
## `eas whoami`
|
|
2227
2285
|
|
|
@@ -2342,7 +2400,7 @@ DESCRIPTION
|
|
|
2342
2400
|
to cancel.
|
|
2343
2401
|
```
|
|
2344
2402
|
|
|
2345
|
-
_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)_
|
|
2346
2404
|
|
|
2347
2405
|
## `eas workflow:create [NAME]`
|
|
2348
2406
|
|
|
@@ -2362,7 +2420,7 @@ DESCRIPTION
|
|
|
2362
2420
|
create a new workflow configuration YAML file
|
|
2363
2421
|
```
|
|
2364
2422
|
|
|
2365
|
-
_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)_
|
|
2366
2424
|
|
|
2367
2425
|
## `eas workflow:logs [ID]`
|
|
2368
2426
|
|
|
@@ -2386,7 +2444,7 @@ DESCRIPTION
|
|
|
2386
2444
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2387
2445
|
```
|
|
2388
2446
|
|
|
2389
|
-
_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)_
|
|
2390
2448
|
|
|
2391
2449
|
## `eas workflow:run FILE`
|
|
2392
2450
|
|
|
@@ -2426,7 +2484,7 @@ FLAG DESCRIPTIONS
|
|
|
2426
2484
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2427
2485
|
```
|
|
2428
2486
|
|
|
2429
|
-
_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)_
|
|
2430
2488
|
|
|
2431
2489
|
## `eas workflow:runs`
|
|
2432
2490
|
|
|
@@ -2448,7 +2506,7 @@ DESCRIPTION
|
|
|
2448
2506
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2449
2507
|
```
|
|
2450
2508
|
|
|
2451
|
-
_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)_
|
|
2452
2510
|
|
|
2453
2511
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2454
2512
|
|
|
@@ -2476,7 +2534,7 @@ FLAG DESCRIPTIONS
|
|
|
2476
2534
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2477
2535
|
```
|
|
2478
2536
|
|
|
2479
|
-
_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)_
|
|
2480
2538
|
|
|
2481
2539
|
## `eas workflow:validate PATH`
|
|
2482
2540
|
|
|
@@ -2496,7 +2554,7 @@ DESCRIPTION
|
|
|
2496
2554
|
validate a workflow configuration yaml file
|
|
2497
2555
|
```
|
|
2498
2556
|
|
|
2499
|
-
_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)_
|
|
2500
2558
|
|
|
2501
2559
|
## `eas workflow:view [ID]`
|
|
2502
2560
|
|
|
@@ -2518,5 +2576,5 @@ DESCRIPTION
|
|
|
2518
2576
|
workflow runs for the current project.
|
|
2519
2577
|
```
|
|
2520
2578
|
|
|
2521
|
-
_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)_
|
|
2522
2580
|
<!-- commandsstop -->
|