eas-cli 18.8.0 → 18.8.1
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 +90 -90
- package/build/build/utils/url.d.ts +6 -0
- package/build/build/utils/url.js +9 -0
- package/build/commands/simulator/start.d.ts +16 -0
- package/build/commands/simulator/start.js +203 -0
- package/build/graphql/generated.d.ts +125 -0
- package/build/graphql/generated.js +15 -3
- package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +5 -0
- package/build/graphql/mutations/DeviceRunSessionMutation.js +34 -0
- package/build/graphql/queries/DeviceRunSessionQuery.d.ts +5 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +28 -0
- package/oclif.manifest.json +580 -476
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -180,7 +180,7 @@ ALIASES
|
|
|
180
180
|
$ eas login
|
|
181
181
|
```
|
|
182
182
|
|
|
183
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
183
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
184
184
|
|
|
185
185
|
## `eas account:logout`
|
|
186
186
|
|
|
@@ -197,7 +197,7 @@ ALIASES
|
|
|
197
197
|
$ eas logout
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
200
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
201
201
|
|
|
202
202
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
203
203
|
|
|
@@ -219,7 +219,7 @@ DESCRIPTION
|
|
|
219
219
|
view account usage and billing for the current cycle
|
|
220
220
|
```
|
|
221
221
|
|
|
222
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
222
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/account/usage.ts)_
|
|
223
223
|
|
|
224
224
|
## `eas account:view`
|
|
225
225
|
|
|
@@ -236,7 +236,7 @@ ALIASES
|
|
|
236
236
|
$ eas whoami
|
|
237
237
|
```
|
|
238
238
|
|
|
239
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
239
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
240
240
|
|
|
241
241
|
## `eas analytics [STATUS]`
|
|
242
242
|
|
|
@@ -250,7 +250,7 @@ DESCRIPTION
|
|
|
250
250
|
display or change analytics settings
|
|
251
251
|
```
|
|
252
252
|
|
|
253
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
253
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
254
254
|
|
|
255
255
|
## `eas autocomplete [SHELL]`
|
|
256
256
|
|
|
@@ -302,7 +302,7 @@ DESCRIPTION
|
|
|
302
302
|
create a branch
|
|
303
303
|
```
|
|
304
304
|
|
|
305
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
305
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
306
306
|
|
|
307
307
|
## `eas branch:delete [NAME]`
|
|
308
308
|
|
|
@@ -323,7 +323,7 @@ DESCRIPTION
|
|
|
323
323
|
delete a branch
|
|
324
324
|
```
|
|
325
325
|
|
|
326
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
326
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
327
327
|
|
|
328
328
|
## `eas branch:list`
|
|
329
329
|
|
|
@@ -343,7 +343,7 @@ DESCRIPTION
|
|
|
343
343
|
list all branches
|
|
344
344
|
```
|
|
345
345
|
|
|
346
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
346
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
347
347
|
|
|
348
348
|
## `eas branch:rename`
|
|
349
349
|
|
|
@@ -363,7 +363,7 @@ DESCRIPTION
|
|
|
363
363
|
rename a branch
|
|
364
364
|
```
|
|
365
365
|
|
|
366
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
366
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
367
367
|
|
|
368
368
|
## `eas branch:view [NAME]`
|
|
369
369
|
|
|
@@ -386,7 +386,7 @@ DESCRIPTION
|
|
|
386
386
|
view a branch
|
|
387
387
|
```
|
|
388
388
|
|
|
389
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
389
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
390
390
|
|
|
391
391
|
## `eas build`
|
|
392
392
|
|
|
@@ -424,7 +424,7 @@ DESCRIPTION
|
|
|
424
424
|
start a build
|
|
425
425
|
```
|
|
426
426
|
|
|
427
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
427
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
428
428
|
|
|
429
429
|
## `eas build:cancel [BUILD_ID]`
|
|
430
430
|
|
|
@@ -444,7 +444,7 @@ DESCRIPTION
|
|
|
444
444
|
cancel a build
|
|
445
445
|
```
|
|
446
446
|
|
|
447
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
447
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
448
448
|
|
|
449
449
|
## `eas build:configure`
|
|
450
450
|
|
|
@@ -462,7 +462,7 @@ DESCRIPTION
|
|
|
462
462
|
configure the project to support EAS Build
|
|
463
463
|
```
|
|
464
464
|
|
|
465
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
465
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
466
466
|
|
|
467
467
|
## `eas build:delete [BUILD_ID]`
|
|
468
468
|
|
|
@@ -482,7 +482,7 @@ DESCRIPTION
|
|
|
482
482
|
delete a build
|
|
483
483
|
```
|
|
484
484
|
|
|
485
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
485
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/delete.ts)_
|
|
486
486
|
|
|
487
487
|
## `eas build:dev`
|
|
488
488
|
|
|
@@ -504,7 +504,7 @@ DESCRIPTION
|
|
|
504
504
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
507
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/dev.ts)_
|
|
508
508
|
|
|
509
509
|
## `eas build:download`
|
|
510
510
|
|
|
@@ -525,7 +525,7 @@ DESCRIPTION
|
|
|
525
525
|
download simulator/emulator builds for a given fingerprint hash
|
|
526
526
|
```
|
|
527
527
|
|
|
528
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
528
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/download.ts)_
|
|
529
529
|
|
|
530
530
|
## `eas build:inspect`
|
|
531
531
|
|
|
@@ -563,7 +563,7 @@ DESCRIPTION
|
|
|
563
563
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
564
564
|
```
|
|
565
565
|
|
|
566
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
566
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
567
567
|
|
|
568
568
|
## `eas build:list`
|
|
569
569
|
|
|
@@ -603,7 +603,7 @@ DESCRIPTION
|
|
|
603
603
|
list all builds for your project
|
|
604
604
|
```
|
|
605
605
|
|
|
606
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
606
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
607
607
|
|
|
608
608
|
## `eas build:resign`
|
|
609
609
|
|
|
@@ -633,7 +633,7 @@ DESCRIPTION
|
|
|
633
633
|
re-sign a build archive
|
|
634
634
|
```
|
|
635
635
|
|
|
636
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
636
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
637
637
|
|
|
638
638
|
## `eas build:run`
|
|
639
639
|
|
|
@@ -659,7 +659,7 @@ DESCRIPTION
|
|
|
659
659
|
run simulator/emulator builds from eas-cli
|
|
660
660
|
```
|
|
661
661
|
|
|
662
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
662
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
663
663
|
|
|
664
664
|
## `eas build:submit`
|
|
665
665
|
|
|
@@ -711,7 +711,7 @@ DESCRIPTION
|
|
|
711
711
|
get the latest version from EAS servers
|
|
712
712
|
```
|
|
713
713
|
|
|
714
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
714
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
715
715
|
|
|
716
716
|
## `eas build:version:set`
|
|
717
717
|
|
|
@@ -729,7 +729,7 @@ DESCRIPTION
|
|
|
729
729
|
update version of an app
|
|
730
730
|
```
|
|
731
731
|
|
|
732
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
732
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
733
733
|
|
|
734
734
|
## `eas build:version:sync`
|
|
735
735
|
|
|
@@ -747,7 +747,7 @@ DESCRIPTION
|
|
|
747
747
|
update a version in native code with a value stored on EAS servers
|
|
748
748
|
```
|
|
749
749
|
|
|
750
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
750
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
751
751
|
|
|
752
752
|
## `eas build:view [BUILD_ID]`
|
|
753
753
|
|
|
@@ -764,7 +764,7 @@ DESCRIPTION
|
|
|
764
764
|
view a build for your project
|
|
765
765
|
```
|
|
766
766
|
|
|
767
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
767
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
768
768
|
|
|
769
769
|
## `eas channel:create [NAME]`
|
|
770
770
|
|
|
@@ -785,7 +785,7 @@ DESCRIPTION
|
|
|
785
785
|
create a channel
|
|
786
786
|
```
|
|
787
787
|
|
|
788
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
788
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
789
789
|
|
|
790
790
|
## `eas channel:delete [NAME]`
|
|
791
791
|
|
|
@@ -806,7 +806,7 @@ DESCRIPTION
|
|
|
806
806
|
Delete a channel
|
|
807
807
|
```
|
|
808
808
|
|
|
809
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
809
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
810
810
|
|
|
811
811
|
## `eas channel:edit [NAME]`
|
|
812
812
|
|
|
@@ -828,7 +828,7 @@ DESCRIPTION
|
|
|
828
828
|
point a channel at a new branch
|
|
829
829
|
```
|
|
830
830
|
|
|
831
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
831
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
832
832
|
|
|
833
833
|
## `eas channel:insights`
|
|
834
834
|
|
|
@@ -852,7 +852,7 @@ DESCRIPTION
|
|
|
852
852
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
855
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
856
856
|
|
|
857
857
|
## `eas channel:list`
|
|
858
858
|
|
|
@@ -872,7 +872,7 @@ DESCRIPTION
|
|
|
872
872
|
list all channels
|
|
873
873
|
```
|
|
874
874
|
|
|
875
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
875
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
876
876
|
|
|
877
877
|
## `eas channel:pause [NAME]`
|
|
878
878
|
|
|
@@ -894,7 +894,7 @@ DESCRIPTION
|
|
|
894
894
|
pause a channel to stop it from sending updates
|
|
895
895
|
```
|
|
896
896
|
|
|
897
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
897
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
898
898
|
|
|
899
899
|
## `eas channel:resume [NAME]`
|
|
900
900
|
|
|
@@ -916,7 +916,7 @@ DESCRIPTION
|
|
|
916
916
|
resume a channel to start sending updates
|
|
917
917
|
```
|
|
918
918
|
|
|
919
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
919
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
920
920
|
|
|
921
921
|
## `eas channel:rollout [CHANNEL]`
|
|
922
922
|
|
|
@@ -951,7 +951,7 @@ DESCRIPTION
|
|
|
951
951
|
Roll a new branch out on a channel incrementally.
|
|
952
952
|
```
|
|
953
953
|
|
|
954
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
954
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
955
955
|
|
|
956
956
|
## `eas channel:view [NAME]`
|
|
957
957
|
|
|
@@ -974,7 +974,7 @@ DESCRIPTION
|
|
|
974
974
|
view a channel
|
|
975
975
|
```
|
|
976
976
|
|
|
977
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
977
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
978
978
|
|
|
979
979
|
## `eas config`
|
|
980
980
|
|
|
@@ -995,7 +995,7 @@ DESCRIPTION
|
|
|
995
995
|
display project configuration (app.json + eas.json)
|
|
996
996
|
```
|
|
997
997
|
|
|
998
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
998
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/config.ts)_
|
|
999
999
|
|
|
1000
1000
|
## `eas credentials`
|
|
1001
1001
|
|
|
@@ -1012,7 +1012,7 @@ DESCRIPTION
|
|
|
1012
1012
|
manage credentials
|
|
1013
1013
|
```
|
|
1014
1014
|
|
|
1015
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1015
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1016
1016
|
|
|
1017
1017
|
## `eas credentials:configure-build`
|
|
1018
1018
|
|
|
@@ -1030,7 +1030,7 @@ DESCRIPTION
|
|
|
1030
1030
|
Set up credentials for building your project.
|
|
1031
1031
|
```
|
|
1032
1032
|
|
|
1033
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1033
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1034
1034
|
|
|
1035
1035
|
## `eas deploy [options]`
|
|
1036
1036
|
|
|
@@ -1059,7 +1059,7 @@ ALIASES
|
|
|
1059
1059
|
$ eas worker:deploy
|
|
1060
1060
|
```
|
|
1061
1061
|
|
|
1062
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1062
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1063
1063
|
|
|
1064
1064
|
## `eas deploy:alias`
|
|
1065
1065
|
|
|
@@ -1084,7 +1084,7 @@ ALIASES
|
|
|
1084
1084
|
$ eas deploy:promote
|
|
1085
1085
|
```
|
|
1086
1086
|
|
|
1087
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1087
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1088
1088
|
|
|
1089
1089
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1090
1090
|
|
|
@@ -1105,7 +1105,7 @@ ALIASES
|
|
|
1105
1105
|
$ eas worker:alias:delete
|
|
1106
1106
|
```
|
|
1107
1107
|
|
|
1108
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1108
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1109
1109
|
|
|
1110
1110
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1111
1111
|
|
|
@@ -1126,7 +1126,7 @@ ALIASES
|
|
|
1126
1126
|
$ eas worker:delete
|
|
1127
1127
|
```
|
|
1128
1128
|
|
|
1129
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1129
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1130
1130
|
|
|
1131
1131
|
## `eas deploy:promote`
|
|
1132
1132
|
|
|
@@ -1163,7 +1163,7 @@ DESCRIPTION
|
|
|
1163
1163
|
register new Apple Devices to use for internal distribution
|
|
1164
1164
|
```
|
|
1165
1165
|
|
|
1166
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1166
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
1167
1167
|
|
|
1168
1168
|
## `eas device:delete`
|
|
1169
1169
|
|
|
@@ -1183,7 +1183,7 @@ DESCRIPTION
|
|
|
1183
1183
|
remove a registered device from your account
|
|
1184
1184
|
```
|
|
1185
1185
|
|
|
1186
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1186
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1187
1187
|
|
|
1188
1188
|
## `eas device:list`
|
|
1189
1189
|
|
|
@@ -1204,7 +1204,7 @@ DESCRIPTION
|
|
|
1204
1204
|
list all registered devices for your account
|
|
1205
1205
|
```
|
|
1206
1206
|
|
|
1207
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1207
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
1208
1208
|
|
|
1209
1209
|
## `eas device:rename`
|
|
1210
1210
|
|
|
@@ -1225,7 +1225,7 @@ DESCRIPTION
|
|
|
1225
1225
|
rename a registered device
|
|
1226
1226
|
```
|
|
1227
1227
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1228
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1229
1229
|
|
|
1230
1230
|
## `eas device:view [UDID]`
|
|
1231
1231
|
|
|
@@ -1239,7 +1239,7 @@ DESCRIPTION
|
|
|
1239
1239
|
view a device for your project
|
|
1240
1240
|
```
|
|
1241
1241
|
|
|
1242
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1242
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
1243
1243
|
|
|
1244
1244
|
## `eas diagnostics`
|
|
1245
1245
|
|
|
@@ -1253,7 +1253,7 @@ DESCRIPTION
|
|
|
1253
1253
|
display environment info
|
|
1254
1254
|
```
|
|
1255
1255
|
|
|
1256
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1256
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1257
1257
|
|
|
1258
1258
|
## `eas env:create [ENVIRONMENT]`
|
|
1259
1259
|
|
|
@@ -1285,7 +1285,7 @@ DESCRIPTION
|
|
|
1285
1285
|
create an environment variable for the current project or account
|
|
1286
1286
|
```
|
|
1287
1287
|
|
|
1288
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1288
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/create.ts)_
|
|
1289
1289
|
|
|
1290
1290
|
## `eas env:delete [ENVIRONMENT]`
|
|
1291
1291
|
|
|
@@ -1311,7 +1311,7 @@ DESCRIPTION
|
|
|
1311
1311
|
delete an environment variable for the current project or account
|
|
1312
1312
|
```
|
|
1313
1313
|
|
|
1314
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1314
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1315
1315
|
|
|
1316
1316
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1317
1317
|
|
|
@@ -1333,7 +1333,7 @@ DESCRIPTION
|
|
|
1333
1333
|
execute a command with environment variables from the selected environment
|
|
1334
1334
|
```
|
|
1335
1335
|
|
|
1336
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1336
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1337
1337
|
|
|
1338
1338
|
## `eas env:get [ENVIRONMENT]`
|
|
1339
1339
|
|
|
@@ -1361,7 +1361,7 @@ DESCRIPTION
|
|
|
1361
1361
|
view an environment variable for the current project or account
|
|
1362
1362
|
```
|
|
1363
1363
|
|
|
1364
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1364
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/get.ts)_
|
|
1365
1365
|
|
|
1366
1366
|
## `eas env:list [ENVIRONMENT]`
|
|
1367
1367
|
|
|
@@ -1389,7 +1389,7 @@ DESCRIPTION
|
|
|
1389
1389
|
list environment variables for the current project or account
|
|
1390
1390
|
```
|
|
1391
1391
|
|
|
1392
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1392
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/list.ts)_
|
|
1393
1393
|
|
|
1394
1394
|
## `eas env:pull [ENVIRONMENT]`
|
|
1395
1395
|
|
|
@@ -1412,7 +1412,7 @@ DESCRIPTION
|
|
|
1412
1412
|
pull environment variables for the selected environment to .env file
|
|
1413
1413
|
```
|
|
1414
1414
|
|
|
1415
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1415
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1416
1416
|
|
|
1417
1417
|
## `eas env:push [ENVIRONMENT]`
|
|
1418
1418
|
|
|
@@ -1434,7 +1434,7 @@ DESCRIPTION
|
|
|
1434
1434
|
push environment variables from .env file to the selected environment
|
|
1435
1435
|
```
|
|
1436
1436
|
|
|
1437
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1437
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/push.ts)_
|
|
1438
1438
|
|
|
1439
1439
|
## `eas env:update [ENVIRONMENT]`
|
|
1440
1440
|
|
|
@@ -1468,7 +1468,7 @@ DESCRIPTION
|
|
|
1468
1468
|
update an environment variable on the current project or account
|
|
1469
1469
|
```
|
|
1470
1470
|
|
|
1471
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1471
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/env/update.ts)_
|
|
1472
1472
|
|
|
1473
1473
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1474
1474
|
|
|
@@ -1512,7 +1512,7 @@ EXAMPLES
|
|
|
1512
1512
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1513
1513
|
```
|
|
1514
1514
|
|
|
1515
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1515
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1516
1516
|
|
|
1517
1517
|
## `eas fingerprint:generate`
|
|
1518
1518
|
|
|
@@ -1543,7 +1543,7 @@ EXAMPLES
|
|
|
1543
1543
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1544
1544
|
```
|
|
1545
1545
|
|
|
1546
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1546
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1547
1547
|
|
|
1548
1548
|
## `eas help [COMMAND]`
|
|
1549
1549
|
|
|
@@ -1652,7 +1652,7 @@ DESCRIPTION
|
|
|
1652
1652
|
validate the local store configuration
|
|
1653
1653
|
```
|
|
1654
1654
|
|
|
1655
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1655
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1656
1656
|
|
|
1657
1657
|
## `eas metadata:pull`
|
|
1658
1658
|
|
|
@@ -1670,7 +1670,7 @@ DESCRIPTION
|
|
|
1670
1670
|
generate the local store configuration from the app stores
|
|
1671
1671
|
```
|
|
1672
1672
|
|
|
1673
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1673
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1674
1674
|
|
|
1675
1675
|
## `eas metadata:push`
|
|
1676
1676
|
|
|
@@ -1688,7 +1688,7 @@ DESCRIPTION
|
|
|
1688
1688
|
sync the local store configuration to the app stores
|
|
1689
1689
|
```
|
|
1690
1690
|
|
|
1691
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1691
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1692
1692
|
|
|
1693
1693
|
## `eas new [PATH]`
|
|
1694
1694
|
|
|
@@ -1740,7 +1740,7 @@ DESCRIPTION
|
|
|
1740
1740
|
open the project page in a web browser
|
|
1741
1741
|
```
|
|
1742
1742
|
|
|
1743
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1743
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/open.ts)_
|
|
1744
1744
|
|
|
1745
1745
|
## `eas project:info`
|
|
1746
1746
|
|
|
@@ -1754,7 +1754,7 @@ DESCRIPTION
|
|
|
1754
1754
|
information about the current project
|
|
1755
1755
|
```
|
|
1756
1756
|
|
|
1757
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1757
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1758
1758
|
|
|
1759
1759
|
## `eas project:init`
|
|
1760
1760
|
|
|
@@ -1777,7 +1777,7 @@ ALIASES
|
|
|
1777
1777
|
$ eas init
|
|
1778
1778
|
```
|
|
1779
1779
|
|
|
1780
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1780
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1781
1781
|
|
|
1782
1782
|
## `eas project:new [PATH]`
|
|
1783
1783
|
|
|
@@ -1801,7 +1801,7 @@ ALIASES
|
|
|
1801
1801
|
$ eas new
|
|
1802
1802
|
```
|
|
1803
1803
|
|
|
1804
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1804
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/project/new.ts)_
|
|
1805
1805
|
|
|
1806
1806
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1807
1807
|
|
|
@@ -1819,7 +1819,7 @@ ALIASES
|
|
|
1819
1819
|
$ eas onboarding
|
|
1820
1820
|
```
|
|
1821
1821
|
|
|
1822
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1822
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1823
1823
|
|
|
1824
1824
|
## `eas submit`
|
|
1825
1825
|
|
|
@@ -1852,7 +1852,7 @@ ALIASES
|
|
|
1852
1852
|
$ eas build:submit
|
|
1853
1853
|
```
|
|
1854
1854
|
|
|
1855
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1855
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1856
1856
|
|
|
1857
1857
|
## `eas update`
|
|
1858
1858
|
|
|
@@ -1895,7 +1895,7 @@ DESCRIPTION
|
|
|
1895
1895
|
publish an update group
|
|
1896
1896
|
```
|
|
1897
1897
|
|
|
1898
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1898
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1899
1899
|
|
|
1900
1900
|
## `eas update:configure`
|
|
1901
1901
|
|
|
@@ -1916,7 +1916,7 @@ DESCRIPTION
|
|
|
1916
1916
|
configure the project to support EAS Update
|
|
1917
1917
|
```
|
|
1918
1918
|
|
|
1919
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1919
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1920
1920
|
|
|
1921
1921
|
## `eas update:delete GROUPID`
|
|
1922
1922
|
|
|
@@ -1937,7 +1937,7 @@ DESCRIPTION
|
|
|
1937
1937
|
delete all the updates in an update group
|
|
1938
1938
|
```
|
|
1939
1939
|
|
|
1940
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1940
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1941
1941
|
|
|
1942
1942
|
## `eas update:edit [GROUPID]`
|
|
1943
1943
|
|
|
@@ -1962,7 +1962,7 @@ DESCRIPTION
|
|
|
1962
1962
|
edit all the updates in an update group
|
|
1963
1963
|
```
|
|
1964
1964
|
|
|
1965
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1965
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1966
1966
|
|
|
1967
1967
|
## `eas update:insights GROUPID`
|
|
1968
1968
|
|
|
@@ -1989,7 +1989,7 @@ DESCRIPTION
|
|
|
1989
1989
|
display launch, crash, unique-user, and size insights for an update group
|
|
1990
1990
|
```
|
|
1991
1991
|
|
|
1992
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
1992
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/insights.ts)_
|
|
1993
1993
|
|
|
1994
1994
|
## `eas update:list`
|
|
1995
1995
|
|
|
@@ -2016,7 +2016,7 @@ DESCRIPTION
|
|
|
2016
2016
|
view the recent updates
|
|
2017
2017
|
```
|
|
2018
2018
|
|
|
2019
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2019
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
2020
2020
|
|
|
2021
2021
|
## `eas update:republish`
|
|
2022
2022
|
|
|
@@ -2054,7 +2054,7 @@ DESCRIPTION
|
|
|
2054
2054
|
roll back to an existing update
|
|
2055
2055
|
```
|
|
2056
2056
|
|
|
2057
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2057
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2058
2058
|
|
|
2059
2059
|
## `eas update:revert-update-rollout`
|
|
2060
2060
|
|
|
@@ -2082,7 +2082,7 @@ DESCRIPTION
|
|
|
2082
2082
|
revert a rollout update for a project
|
|
2083
2083
|
```
|
|
2084
2084
|
|
|
2085
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2085
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2086
2086
|
|
|
2087
2087
|
## `eas update:roll-back-to-embedded`
|
|
2088
2088
|
|
|
@@ -2112,7 +2112,7 @@ DESCRIPTION
|
|
|
2112
2112
|
roll back to the embedded update
|
|
2113
2113
|
```
|
|
2114
2114
|
|
|
2115
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2115
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2116
2116
|
|
|
2117
2117
|
## `eas update:rollback`
|
|
2118
2118
|
|
|
@@ -2133,7 +2133,7 @@ DESCRIPTION
|
|
|
2133
2133
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2134
2134
|
```
|
|
2135
2135
|
|
|
2136
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2136
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2137
2137
|
|
|
2138
2138
|
## `eas update:view GROUPID`
|
|
2139
2139
|
|
|
@@ -2157,7 +2157,7 @@ DESCRIPTION
|
|
|
2157
2157
|
update group details
|
|
2158
2158
|
```
|
|
2159
2159
|
|
|
2160
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2160
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
2161
2161
|
|
|
2162
2162
|
## `eas upload`
|
|
2163
2163
|
|
|
@@ -2178,7 +2178,7 @@ DESCRIPTION
|
|
|
2178
2178
|
upload a local build and generate a sharable link
|
|
2179
2179
|
```
|
|
2180
2180
|
|
|
2181
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2181
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/upload.ts)_
|
|
2182
2182
|
|
|
2183
2183
|
## `eas webhook:create`
|
|
2184
2184
|
|
|
@@ -2200,7 +2200,7 @@ DESCRIPTION
|
|
|
2200
2200
|
create a webhook
|
|
2201
2201
|
```
|
|
2202
2202
|
|
|
2203
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2203
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2204
2204
|
|
|
2205
2205
|
## `eas webhook:delete [ID]`
|
|
2206
2206
|
|
|
@@ -2220,7 +2220,7 @@ DESCRIPTION
|
|
|
2220
2220
|
delete a webhook
|
|
2221
2221
|
```
|
|
2222
2222
|
|
|
2223
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2223
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2224
2224
|
|
|
2225
2225
|
## `eas webhook:list`
|
|
2226
2226
|
|
|
@@ -2239,7 +2239,7 @@ DESCRIPTION
|
|
|
2239
2239
|
list webhooks
|
|
2240
2240
|
```
|
|
2241
2241
|
|
|
2242
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2242
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2243
2243
|
|
|
2244
2244
|
## `eas webhook:update`
|
|
2245
2245
|
|
|
@@ -2262,7 +2262,7 @@ DESCRIPTION
|
|
|
2262
2262
|
update a webhook
|
|
2263
2263
|
```
|
|
2264
2264
|
|
|
2265
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2265
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2266
2266
|
|
|
2267
2267
|
## `eas webhook:view ID`
|
|
2268
2268
|
|
|
@@ -2279,7 +2279,7 @@ DESCRIPTION
|
|
|
2279
2279
|
view a webhook
|
|
2280
2280
|
```
|
|
2281
2281
|
|
|
2282
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2282
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2283
2283
|
|
|
2284
2284
|
## `eas whoami`
|
|
2285
2285
|
|
|
@@ -2400,7 +2400,7 @@ DESCRIPTION
|
|
|
2400
2400
|
to cancel.
|
|
2401
2401
|
```
|
|
2402
2402
|
|
|
2403
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2403
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2404
2404
|
|
|
2405
2405
|
## `eas workflow:create [NAME]`
|
|
2406
2406
|
|
|
@@ -2420,7 +2420,7 @@ DESCRIPTION
|
|
|
2420
2420
|
create a new workflow configuration YAML file
|
|
2421
2421
|
```
|
|
2422
2422
|
|
|
2423
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2423
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2424
2424
|
|
|
2425
2425
|
## `eas workflow:logs [ID]`
|
|
2426
2426
|
|
|
@@ -2444,7 +2444,7 @@ DESCRIPTION
|
|
|
2444
2444
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2445
2445
|
```
|
|
2446
2446
|
|
|
2447
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2447
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2448
2448
|
|
|
2449
2449
|
## `eas workflow:run FILE`
|
|
2450
2450
|
|
|
@@ -2484,7 +2484,7 @@ FLAG DESCRIPTIONS
|
|
|
2484
2484
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2485
2485
|
```
|
|
2486
2486
|
|
|
2487
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2487
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2488
2488
|
|
|
2489
2489
|
## `eas workflow:runs`
|
|
2490
2490
|
|
|
@@ -2506,7 +2506,7 @@ DESCRIPTION
|
|
|
2506
2506
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2507
2507
|
```
|
|
2508
2508
|
|
|
2509
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2509
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2510
2510
|
|
|
2511
2511
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2512
2512
|
|
|
@@ -2534,7 +2534,7 @@ FLAG DESCRIPTIONS
|
|
|
2534
2534
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2535
2535
|
```
|
|
2536
2536
|
|
|
2537
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2537
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2538
2538
|
|
|
2539
2539
|
## `eas workflow:validate PATH`
|
|
2540
2540
|
|
|
@@ -2554,7 +2554,7 @@ DESCRIPTION
|
|
|
2554
2554
|
validate a workflow configuration yaml file
|
|
2555
2555
|
```
|
|
2556
2556
|
|
|
2557
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2557
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2558
2558
|
|
|
2559
2559
|
## `eas workflow:view [ID]`
|
|
2560
2560
|
|
|
@@ -2576,5 +2576,5 @@ DESCRIPTION
|
|
|
2576
2576
|
workflow runs for the current project.
|
|
2577
2577
|
```
|
|
2578
2578
|
|
|
2579
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.8.
|
|
2579
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.8.1/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2580
2580
|
<!-- commandsstop -->
|