eas-cli 18.8.0 → 18.9.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 +162 -94
- package/build/build/utils/url.d.ts +6 -0
- package/build/build/utils/url.js +9 -0
- package/build/commands/build/download.d.ts +6 -2
- package/build/commands/build/download.js +129 -18
- package/build/commands/integrations/asc/connect.d.ts +19 -0
- package/build/commands/integrations/asc/connect.js +159 -0
- package/build/commands/integrations/asc/disconnect.d.ts +15 -0
- package/build/commands/integrations/asc/disconnect.js +115 -0
- package/build/commands/integrations/asc/status.d.ts +14 -0
- package/build/commands/integrations/asc/status.js +65 -0
- package/build/commands/simulator/start.d.ts +16 -0
- package/build/commands/simulator/start.js +205 -0
- package/build/commands/simulator/stop.d.ts +13 -0
- package/build/commands/simulator/stop.js +38 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +2 -1
- package/build/credentials/ios/actions/AscApiKeyUtils.js +16 -0
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +3 -1
- package/build/credentials/ios/appstore/AppStoreApi.js +2 -2
- package/build/graphql/generated.d.ts +368 -0
- package/build/graphql/generated.js +23 -3
- package/build/graphql/mutations/AscAppLinkMutation.d.ts +12 -0
- package/build/graphql/mutations/AscAppLinkMutation.js +36 -0
- package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +6 -0
- package/build/graphql/mutations/DeviceRunSessionMutation.js +49 -0
- package/build/graphql/queries/AscAppLinkQuery.d.ts +8 -0
- package/build/graphql/queries/AscAppLinkQuery.js +67 -0
- package/build/graphql/queries/DeviceRunSessionQuery.d.ts +5 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +28 -0
- package/build/integrations/asc/ascApiKey.d.ts +7 -0
- package/build/integrations/asc/ascApiKey.js +26 -0
- package/build/integrations/asc/utils.d.ts +21 -0
- package/build/integrations/asc/utils.js +56 -0
- package/build/utils/download.d.ts +1 -0
- package/build/utils/download.js +1 -0
- package/oclif.manifest.json +3152 -2671
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -117,6 +117,9 @@ eas --help COMMAND
|
|
|
117
117
|
* [`eas help [COMMAND]`](#eas-help-command)
|
|
118
118
|
* [`eas init`](#eas-init)
|
|
119
119
|
* [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
|
|
120
|
+
* [`eas integrations:asc:connect`](#eas-integrationsascconnect)
|
|
121
|
+
* [`eas integrations:asc:disconnect`](#eas-integrationsascdisconnect)
|
|
122
|
+
* [`eas integrations:asc:status`](#eas-integrationsascstatus)
|
|
120
123
|
* [`eas login`](#eas-login)
|
|
121
124
|
* [`eas logout`](#eas-logout)
|
|
122
125
|
* [`eas metadata:lint`](#eas-metadatalint)
|
|
@@ -180,7 +183,7 @@ ALIASES
|
|
|
180
183
|
$ eas login
|
|
181
184
|
```
|
|
182
185
|
|
|
183
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
186
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
184
187
|
|
|
185
188
|
## `eas account:logout`
|
|
186
189
|
|
|
@@ -197,7 +200,7 @@ ALIASES
|
|
|
197
200
|
$ eas logout
|
|
198
201
|
```
|
|
199
202
|
|
|
200
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
203
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
201
204
|
|
|
202
205
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
203
206
|
|
|
@@ -219,7 +222,7 @@ DESCRIPTION
|
|
|
219
222
|
view account usage and billing for the current cycle
|
|
220
223
|
```
|
|
221
224
|
|
|
222
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
225
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
223
226
|
|
|
224
227
|
## `eas account:view`
|
|
225
228
|
|
|
@@ -236,7 +239,7 @@ ALIASES
|
|
|
236
239
|
$ eas whoami
|
|
237
240
|
```
|
|
238
241
|
|
|
239
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
242
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
240
243
|
|
|
241
244
|
## `eas analytics [STATUS]`
|
|
242
245
|
|
|
@@ -250,7 +253,7 @@ DESCRIPTION
|
|
|
250
253
|
display or change analytics settings
|
|
251
254
|
```
|
|
252
255
|
|
|
253
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
256
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
254
257
|
|
|
255
258
|
## `eas autocomplete [SHELL]`
|
|
256
259
|
|
|
@@ -302,7 +305,7 @@ DESCRIPTION
|
|
|
302
305
|
create a branch
|
|
303
306
|
```
|
|
304
307
|
|
|
305
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
308
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
306
309
|
|
|
307
310
|
## `eas branch:delete [NAME]`
|
|
308
311
|
|
|
@@ -323,7 +326,7 @@ DESCRIPTION
|
|
|
323
326
|
delete a branch
|
|
324
327
|
```
|
|
325
328
|
|
|
326
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
329
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
327
330
|
|
|
328
331
|
## `eas branch:list`
|
|
329
332
|
|
|
@@ -343,7 +346,7 @@ DESCRIPTION
|
|
|
343
346
|
list all branches
|
|
344
347
|
```
|
|
345
348
|
|
|
346
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
349
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
347
350
|
|
|
348
351
|
## `eas branch:rename`
|
|
349
352
|
|
|
@@ -363,7 +366,7 @@ DESCRIPTION
|
|
|
363
366
|
rename a branch
|
|
364
367
|
```
|
|
365
368
|
|
|
366
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
369
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
367
370
|
|
|
368
371
|
## `eas branch:view [NAME]`
|
|
369
372
|
|
|
@@ -386,7 +389,7 @@ DESCRIPTION
|
|
|
386
389
|
view a branch
|
|
387
390
|
```
|
|
388
391
|
|
|
389
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
392
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
390
393
|
|
|
391
394
|
## `eas build`
|
|
392
395
|
|
|
@@ -424,7 +427,7 @@ DESCRIPTION
|
|
|
424
427
|
start a build
|
|
425
428
|
```
|
|
426
429
|
|
|
427
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
430
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
428
431
|
|
|
429
432
|
## `eas build:cancel [BUILD_ID]`
|
|
430
433
|
|
|
@@ -444,7 +447,7 @@ DESCRIPTION
|
|
|
444
447
|
cancel a build
|
|
445
448
|
```
|
|
446
449
|
|
|
447
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
450
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
448
451
|
|
|
449
452
|
## `eas build:configure`
|
|
450
453
|
|
|
@@ -462,7 +465,7 @@ DESCRIPTION
|
|
|
462
465
|
configure the project to support EAS Build
|
|
463
466
|
```
|
|
464
467
|
|
|
465
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
468
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
466
469
|
|
|
467
470
|
## `eas build:delete [BUILD_ID]`
|
|
468
471
|
|
|
@@ -482,7 +485,7 @@ DESCRIPTION
|
|
|
482
485
|
delete a build
|
|
483
486
|
```
|
|
484
487
|
|
|
485
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
488
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
486
489
|
|
|
487
490
|
## `eas build:dev`
|
|
488
491
|
|
|
@@ -504,28 +507,34 @@ DESCRIPTION
|
|
|
504
507
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
505
508
|
```
|
|
506
509
|
|
|
507
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
510
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
508
511
|
|
|
509
512
|
## `eas build:download`
|
|
510
513
|
|
|
511
|
-
download simulator/emulator
|
|
514
|
+
download a simulator/emulator build by build ID or fingerprint hash
|
|
512
515
|
|
|
513
516
|
```
|
|
514
517
|
USAGE
|
|
515
|
-
$ eas build:download --fingerprint <value>
|
|
518
|
+
$ eas build:download [--build-id <value> | --fingerprint <value> | -p ios|android | --dev-client]
|
|
519
|
+
[--all-artifacts] [--json] [--non-interactive]
|
|
516
520
|
|
|
517
521
|
FLAGS
|
|
518
522
|
-p, --platform=<option> <options: ios|android>
|
|
523
|
+
--all-artifacts Download all available build artifacts (build artifacts archive, Xcode logs, etc.) in
|
|
524
|
+
addition to the application archive. Without this flag, only the application archive is
|
|
525
|
+
downloaded and the command errors if it is missing.
|
|
526
|
+
--build-id=<value> ID of the build to download. Mutually exclusive with --fingerprint, --platform, and
|
|
527
|
+
--dev-client; the platform is derived from the build itself.
|
|
519
528
|
--[no-]dev-client Filter only dev-client builds.
|
|
520
|
-
--fingerprint=<value>
|
|
529
|
+
--fingerprint=<value> Fingerprint hash of the build to download
|
|
521
530
|
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
522
531
|
--non-interactive Run the command in non-interactive mode.
|
|
523
532
|
|
|
524
533
|
DESCRIPTION
|
|
525
|
-
download simulator/emulator
|
|
534
|
+
download a simulator/emulator build by build ID or fingerprint hash
|
|
526
535
|
```
|
|
527
536
|
|
|
528
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
537
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
529
538
|
|
|
530
539
|
## `eas build:inspect`
|
|
531
540
|
|
|
@@ -563,7 +572,7 @@ DESCRIPTION
|
|
|
563
572
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
564
573
|
```
|
|
565
574
|
|
|
566
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
575
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
567
576
|
|
|
568
577
|
## `eas build:list`
|
|
569
578
|
|
|
@@ -603,7 +612,7 @@ DESCRIPTION
|
|
|
603
612
|
list all builds for your project
|
|
604
613
|
```
|
|
605
614
|
|
|
606
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
615
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
607
616
|
|
|
608
617
|
## `eas build:resign`
|
|
609
618
|
|
|
@@ -633,7 +642,7 @@ DESCRIPTION
|
|
|
633
642
|
re-sign a build archive
|
|
634
643
|
```
|
|
635
644
|
|
|
636
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
645
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
637
646
|
|
|
638
647
|
## `eas build:run`
|
|
639
648
|
|
|
@@ -659,7 +668,7 @@ DESCRIPTION
|
|
|
659
668
|
run simulator/emulator builds from eas-cli
|
|
660
669
|
```
|
|
661
670
|
|
|
662
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
671
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
663
672
|
|
|
664
673
|
## `eas build:submit`
|
|
665
674
|
|
|
@@ -711,7 +720,7 @@ DESCRIPTION
|
|
|
711
720
|
get the latest version from EAS servers
|
|
712
721
|
```
|
|
713
722
|
|
|
714
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
723
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
715
724
|
|
|
716
725
|
## `eas build:version:set`
|
|
717
726
|
|
|
@@ -729,7 +738,7 @@ DESCRIPTION
|
|
|
729
738
|
update version of an app
|
|
730
739
|
```
|
|
731
740
|
|
|
732
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
741
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
733
742
|
|
|
734
743
|
## `eas build:version:sync`
|
|
735
744
|
|
|
@@ -747,7 +756,7 @@ DESCRIPTION
|
|
|
747
756
|
update a version in native code with a value stored on EAS servers
|
|
748
757
|
```
|
|
749
758
|
|
|
750
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
759
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
751
760
|
|
|
752
761
|
## `eas build:view [BUILD_ID]`
|
|
753
762
|
|
|
@@ -764,7 +773,7 @@ DESCRIPTION
|
|
|
764
773
|
view a build for your project
|
|
765
774
|
```
|
|
766
775
|
|
|
767
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
776
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
768
777
|
|
|
769
778
|
## `eas channel:create [NAME]`
|
|
770
779
|
|
|
@@ -785,7 +794,7 @@ DESCRIPTION
|
|
|
785
794
|
create a channel
|
|
786
795
|
```
|
|
787
796
|
|
|
788
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
797
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
789
798
|
|
|
790
799
|
## `eas channel:delete [NAME]`
|
|
791
800
|
|
|
@@ -806,7 +815,7 @@ DESCRIPTION
|
|
|
806
815
|
Delete a channel
|
|
807
816
|
```
|
|
808
817
|
|
|
809
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
818
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
810
819
|
|
|
811
820
|
## `eas channel:edit [NAME]`
|
|
812
821
|
|
|
@@ -828,7 +837,7 @@ DESCRIPTION
|
|
|
828
837
|
point a channel at a new branch
|
|
829
838
|
```
|
|
830
839
|
|
|
831
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
840
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
832
841
|
|
|
833
842
|
## `eas channel:insights`
|
|
834
843
|
|
|
@@ -852,7 +861,7 @@ DESCRIPTION
|
|
|
852
861
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
853
862
|
```
|
|
854
863
|
|
|
855
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
864
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
856
865
|
|
|
857
866
|
## `eas channel:list`
|
|
858
867
|
|
|
@@ -872,7 +881,7 @@ DESCRIPTION
|
|
|
872
881
|
list all channels
|
|
873
882
|
```
|
|
874
883
|
|
|
875
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
884
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
876
885
|
|
|
877
886
|
## `eas channel:pause [NAME]`
|
|
878
887
|
|
|
@@ -894,7 +903,7 @@ DESCRIPTION
|
|
|
894
903
|
pause a channel to stop it from sending updates
|
|
895
904
|
```
|
|
896
905
|
|
|
897
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
906
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
898
907
|
|
|
899
908
|
## `eas channel:resume [NAME]`
|
|
900
909
|
|
|
@@ -916,7 +925,7 @@ DESCRIPTION
|
|
|
916
925
|
resume a channel to start sending updates
|
|
917
926
|
```
|
|
918
927
|
|
|
919
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
928
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
920
929
|
|
|
921
930
|
## `eas channel:rollout [CHANNEL]`
|
|
922
931
|
|
|
@@ -951,7 +960,7 @@ DESCRIPTION
|
|
|
951
960
|
Roll a new branch out on a channel incrementally.
|
|
952
961
|
```
|
|
953
962
|
|
|
954
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
963
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
955
964
|
|
|
956
965
|
## `eas channel:view [NAME]`
|
|
957
966
|
|
|
@@ -974,7 +983,7 @@ DESCRIPTION
|
|
|
974
983
|
view a channel
|
|
975
984
|
```
|
|
976
985
|
|
|
977
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
986
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
978
987
|
|
|
979
988
|
## `eas config`
|
|
980
989
|
|
|
@@ -995,7 +1004,7 @@ DESCRIPTION
|
|
|
995
1004
|
display project configuration (app.json + eas.json)
|
|
996
1005
|
```
|
|
997
1006
|
|
|
998
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1007
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/config.ts)_
|
|
999
1008
|
|
|
1000
1009
|
## `eas credentials`
|
|
1001
1010
|
|
|
@@ -1012,7 +1021,7 @@ DESCRIPTION
|
|
|
1012
1021
|
manage credentials
|
|
1013
1022
|
```
|
|
1014
1023
|
|
|
1015
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1024
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1016
1025
|
|
|
1017
1026
|
## `eas credentials:configure-build`
|
|
1018
1027
|
|
|
@@ -1030,7 +1039,7 @@ DESCRIPTION
|
|
|
1030
1039
|
Set up credentials for building your project.
|
|
1031
1040
|
```
|
|
1032
1041
|
|
|
1033
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1042
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1034
1043
|
|
|
1035
1044
|
## `eas deploy [options]`
|
|
1036
1045
|
|
|
@@ -1059,7 +1068,7 @@ ALIASES
|
|
|
1059
1068
|
$ eas worker:deploy
|
|
1060
1069
|
```
|
|
1061
1070
|
|
|
1062
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1071
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1063
1072
|
|
|
1064
1073
|
## `eas deploy:alias`
|
|
1065
1074
|
|
|
@@ -1084,7 +1093,7 @@ ALIASES
|
|
|
1084
1093
|
$ eas deploy:promote
|
|
1085
1094
|
```
|
|
1086
1095
|
|
|
1087
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1096
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1088
1097
|
|
|
1089
1098
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1090
1099
|
|
|
@@ -1105,7 +1114,7 @@ ALIASES
|
|
|
1105
1114
|
$ eas worker:alias:delete
|
|
1106
1115
|
```
|
|
1107
1116
|
|
|
1108
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1117
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1109
1118
|
|
|
1110
1119
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1111
1120
|
|
|
@@ -1126,7 +1135,7 @@ ALIASES
|
|
|
1126
1135
|
$ eas worker:delete
|
|
1127
1136
|
```
|
|
1128
1137
|
|
|
1129
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1138
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1130
1139
|
|
|
1131
1140
|
## `eas deploy:promote`
|
|
1132
1141
|
|
|
@@ -1163,7 +1172,7 @@ DESCRIPTION
|
|
|
1163
1172
|
register new Apple Devices to use for internal distribution
|
|
1164
1173
|
```
|
|
1165
1174
|
|
|
1166
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1175
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1167
1176
|
|
|
1168
1177
|
## `eas device:delete`
|
|
1169
1178
|
|
|
@@ -1183,7 +1192,7 @@ DESCRIPTION
|
|
|
1183
1192
|
remove a registered device from your account
|
|
1184
1193
|
```
|
|
1185
1194
|
|
|
1186
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1195
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1187
1196
|
|
|
1188
1197
|
## `eas device:list`
|
|
1189
1198
|
|
|
@@ -1204,7 +1213,7 @@ DESCRIPTION
|
|
|
1204
1213
|
list all registered devices for your account
|
|
1205
1214
|
```
|
|
1206
1215
|
|
|
1207
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1216
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1208
1217
|
|
|
1209
1218
|
## `eas device:rename`
|
|
1210
1219
|
|
|
@@ -1225,7 +1234,7 @@ DESCRIPTION
|
|
|
1225
1234
|
rename a registered device
|
|
1226
1235
|
```
|
|
1227
1236
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1237
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1229
1238
|
|
|
1230
1239
|
## `eas device:view [UDID]`
|
|
1231
1240
|
|
|
@@ -1239,7 +1248,7 @@ DESCRIPTION
|
|
|
1239
1248
|
view a device for your project
|
|
1240
1249
|
```
|
|
1241
1250
|
|
|
1242
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1251
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1243
1252
|
|
|
1244
1253
|
## `eas diagnostics`
|
|
1245
1254
|
|
|
@@ -1253,7 +1262,7 @@ DESCRIPTION
|
|
|
1253
1262
|
display environment info
|
|
1254
1263
|
```
|
|
1255
1264
|
|
|
1256
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1265
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1257
1266
|
|
|
1258
1267
|
## `eas env:create [ENVIRONMENT]`
|
|
1259
1268
|
|
|
@@ -1285,7 +1294,7 @@ DESCRIPTION
|
|
|
1285
1294
|
create an environment variable for the current project or account
|
|
1286
1295
|
```
|
|
1287
1296
|
|
|
1288
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1297
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1289
1298
|
|
|
1290
1299
|
## `eas env:delete [ENVIRONMENT]`
|
|
1291
1300
|
|
|
@@ -1311,7 +1320,7 @@ DESCRIPTION
|
|
|
1311
1320
|
delete an environment variable for the current project or account
|
|
1312
1321
|
```
|
|
1313
1322
|
|
|
1314
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1323
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1315
1324
|
|
|
1316
1325
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1317
1326
|
|
|
@@ -1333,7 +1342,7 @@ DESCRIPTION
|
|
|
1333
1342
|
execute a command with environment variables from the selected environment
|
|
1334
1343
|
```
|
|
1335
1344
|
|
|
1336
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1345
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1337
1346
|
|
|
1338
1347
|
## `eas env:get [ENVIRONMENT]`
|
|
1339
1348
|
|
|
@@ -1361,7 +1370,7 @@ DESCRIPTION
|
|
|
1361
1370
|
view an environment variable for the current project or account
|
|
1362
1371
|
```
|
|
1363
1372
|
|
|
1364
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1373
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1365
1374
|
|
|
1366
1375
|
## `eas env:list [ENVIRONMENT]`
|
|
1367
1376
|
|
|
@@ -1389,7 +1398,7 @@ DESCRIPTION
|
|
|
1389
1398
|
list environment variables for the current project or account
|
|
1390
1399
|
```
|
|
1391
1400
|
|
|
1392
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1401
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1393
1402
|
|
|
1394
1403
|
## `eas env:pull [ENVIRONMENT]`
|
|
1395
1404
|
|
|
@@ -1412,7 +1421,7 @@ DESCRIPTION
|
|
|
1412
1421
|
pull environment variables for the selected environment to .env file
|
|
1413
1422
|
```
|
|
1414
1423
|
|
|
1415
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1424
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1416
1425
|
|
|
1417
1426
|
## `eas env:push [ENVIRONMENT]`
|
|
1418
1427
|
|
|
@@ -1434,7 +1443,7 @@ DESCRIPTION
|
|
|
1434
1443
|
push environment variables from .env file to the selected environment
|
|
1435
1444
|
```
|
|
1436
1445
|
|
|
1437
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1446
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1438
1447
|
|
|
1439
1448
|
## `eas env:update [ENVIRONMENT]`
|
|
1440
1449
|
|
|
@@ -1468,7 +1477,7 @@ DESCRIPTION
|
|
|
1468
1477
|
update an environment variable on the current project or account
|
|
1469
1478
|
```
|
|
1470
1479
|
|
|
1471
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1480
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1472
1481
|
|
|
1473
1482
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1474
1483
|
|
|
@@ -1512,7 +1521,7 @@ EXAMPLES
|
|
|
1512
1521
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1513
1522
|
```
|
|
1514
1523
|
|
|
1515
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1524
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1516
1525
|
|
|
1517
1526
|
## `eas fingerprint:generate`
|
|
1518
1527
|
|
|
@@ -1543,7 +1552,7 @@ EXAMPLES
|
|
|
1543
1552
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1544
1553
|
```
|
|
1545
1554
|
|
|
1546
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1555
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1547
1556
|
|
|
1548
1557
|
## `eas help [COMMAND]`
|
|
1549
1558
|
|
|
@@ -1602,6 +1611,65 @@ ALIASES
|
|
|
1602
1611
|
$ eas onboarding
|
|
1603
1612
|
```
|
|
1604
1613
|
|
|
1614
|
+
## `eas integrations:asc:connect`
|
|
1615
|
+
|
|
1616
|
+
connect a project to an App Store Connect app
|
|
1617
|
+
|
|
1618
|
+
```
|
|
1619
|
+
USAGE
|
|
1620
|
+
$ eas integrations:asc:connect [--api-key-id <value>] [--asc-app-id <value>] [--bundle-id <value>] [--json]
|
|
1621
|
+
[--non-interactive]
|
|
1622
|
+
|
|
1623
|
+
FLAGS
|
|
1624
|
+
--api-key-id=<value> Apple App Store Connect API Key ID
|
|
1625
|
+
--asc-app-id=<value> App Store Connect app identifier
|
|
1626
|
+
--bundle-id=<value> Filter discovered apps by bundle identifier
|
|
1627
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1628
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1629
|
+
|
|
1630
|
+
DESCRIPTION
|
|
1631
|
+
connect a project to an App Store Connect app
|
|
1632
|
+
```
|
|
1633
|
+
|
|
1634
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
|
|
1635
|
+
|
|
1636
|
+
## `eas integrations:asc:disconnect`
|
|
1637
|
+
|
|
1638
|
+
disconnect the current project from its App Store Connect app
|
|
1639
|
+
|
|
1640
|
+
```
|
|
1641
|
+
USAGE
|
|
1642
|
+
$ eas integrations:asc:disconnect [--yes] [--json] [--non-interactive]
|
|
1643
|
+
|
|
1644
|
+
FLAGS
|
|
1645
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1646
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1647
|
+
--yes Skip confirmation prompt
|
|
1648
|
+
|
|
1649
|
+
DESCRIPTION
|
|
1650
|
+
disconnect the current project from its App Store Connect app
|
|
1651
|
+
```
|
|
1652
|
+
|
|
1653
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
|
|
1654
|
+
|
|
1655
|
+
## `eas integrations:asc:status`
|
|
1656
|
+
|
|
1657
|
+
show the App Store Connect app link status for the current project
|
|
1658
|
+
|
|
1659
|
+
```
|
|
1660
|
+
USAGE
|
|
1661
|
+
$ eas integrations:asc:status [--json] [--non-interactive]
|
|
1662
|
+
|
|
1663
|
+
FLAGS
|
|
1664
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1665
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1666
|
+
|
|
1667
|
+
DESCRIPTION
|
|
1668
|
+
show the App Store Connect app link status for the current project
|
|
1669
|
+
```
|
|
1670
|
+
|
|
1671
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
|
|
1672
|
+
|
|
1605
1673
|
## `eas login`
|
|
1606
1674
|
|
|
1607
1675
|
log in with your Expo account
|
|
@@ -1652,7 +1720,7 @@ DESCRIPTION
|
|
|
1652
1720
|
validate the local store configuration
|
|
1653
1721
|
```
|
|
1654
1722
|
|
|
1655
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1723
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1656
1724
|
|
|
1657
1725
|
## `eas metadata:pull`
|
|
1658
1726
|
|
|
@@ -1670,7 +1738,7 @@ DESCRIPTION
|
|
|
1670
1738
|
generate the local store configuration from the app stores
|
|
1671
1739
|
```
|
|
1672
1740
|
|
|
1673
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1741
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1674
1742
|
|
|
1675
1743
|
## `eas metadata:push`
|
|
1676
1744
|
|
|
@@ -1688,7 +1756,7 @@ DESCRIPTION
|
|
|
1688
1756
|
sync the local store configuration to the app stores
|
|
1689
1757
|
```
|
|
1690
1758
|
|
|
1691
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1759
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1692
1760
|
|
|
1693
1761
|
## `eas new [PATH]`
|
|
1694
1762
|
|
|
@@ -1740,7 +1808,7 @@ DESCRIPTION
|
|
|
1740
1808
|
open the project page in a web browser
|
|
1741
1809
|
```
|
|
1742
1810
|
|
|
1743
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1811
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/open.ts)_
|
|
1744
1812
|
|
|
1745
1813
|
## `eas project:info`
|
|
1746
1814
|
|
|
@@ -1754,7 +1822,7 @@ DESCRIPTION
|
|
|
1754
1822
|
information about the current project
|
|
1755
1823
|
```
|
|
1756
1824
|
|
|
1757
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1825
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1758
1826
|
|
|
1759
1827
|
## `eas project:init`
|
|
1760
1828
|
|
|
@@ -1777,7 +1845,7 @@ ALIASES
|
|
|
1777
1845
|
$ eas init
|
|
1778
1846
|
```
|
|
1779
1847
|
|
|
1780
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1848
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1781
1849
|
|
|
1782
1850
|
## `eas project:new [PATH]`
|
|
1783
1851
|
|
|
@@ -1801,7 +1869,7 @@ ALIASES
|
|
|
1801
1869
|
$ eas new
|
|
1802
1870
|
```
|
|
1803
1871
|
|
|
1804
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1872
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1805
1873
|
|
|
1806
1874
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1807
1875
|
|
|
@@ -1819,7 +1887,7 @@ ALIASES
|
|
|
1819
1887
|
$ eas onboarding
|
|
1820
1888
|
```
|
|
1821
1889
|
|
|
1822
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1890
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1823
1891
|
|
|
1824
1892
|
## `eas submit`
|
|
1825
1893
|
|
|
@@ -1852,7 +1920,7 @@ ALIASES
|
|
|
1852
1920
|
$ eas build:submit
|
|
1853
1921
|
```
|
|
1854
1922
|
|
|
1855
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1923
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1856
1924
|
|
|
1857
1925
|
## `eas update`
|
|
1858
1926
|
|
|
@@ -1895,7 +1963,7 @@ DESCRIPTION
|
|
|
1895
1963
|
publish an update group
|
|
1896
1964
|
```
|
|
1897
1965
|
|
|
1898
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1966
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1899
1967
|
|
|
1900
1968
|
## `eas update:configure`
|
|
1901
1969
|
|
|
@@ -1916,7 +1984,7 @@ DESCRIPTION
|
|
|
1916
1984
|
configure the project to support EAS Update
|
|
1917
1985
|
```
|
|
1918
1986
|
|
|
1919
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1987
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1920
1988
|
|
|
1921
1989
|
## `eas update:delete GROUPID`
|
|
1922
1990
|
|
|
@@ -1937,7 +2005,7 @@ DESCRIPTION
|
|
|
1937
2005
|
delete all the updates in an update group
|
|
1938
2006
|
```
|
|
1939
2007
|
|
|
1940
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2008
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1941
2009
|
|
|
1942
2010
|
## `eas update:edit [GROUPID]`
|
|
1943
2011
|
|
|
@@ -1962,7 +2030,7 @@ DESCRIPTION
|
|
|
1962
2030
|
edit all the updates in an update group
|
|
1963
2031
|
```
|
|
1964
2032
|
|
|
1965
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2033
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1966
2034
|
|
|
1967
2035
|
## `eas update:insights GROUPID`
|
|
1968
2036
|
|
|
@@ -1989,7 +2057,7 @@ DESCRIPTION
|
|
|
1989
2057
|
display launch, crash, unique-user, and size insights for an update group
|
|
1990
2058
|
```
|
|
1991
2059
|
|
|
1992
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2060
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
1993
2061
|
|
|
1994
2062
|
## `eas update:list`
|
|
1995
2063
|
|
|
@@ -2016,7 +2084,7 @@ DESCRIPTION
|
|
|
2016
2084
|
view the recent updates
|
|
2017
2085
|
```
|
|
2018
2086
|
|
|
2019
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2087
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
2020
2088
|
|
|
2021
2089
|
## `eas update:republish`
|
|
2022
2090
|
|
|
@@ -2054,7 +2122,7 @@ DESCRIPTION
|
|
|
2054
2122
|
roll back to an existing update
|
|
2055
2123
|
```
|
|
2056
2124
|
|
|
2057
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2125
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2058
2126
|
|
|
2059
2127
|
## `eas update:revert-update-rollout`
|
|
2060
2128
|
|
|
@@ -2082,7 +2150,7 @@ DESCRIPTION
|
|
|
2082
2150
|
revert a rollout update for a project
|
|
2083
2151
|
```
|
|
2084
2152
|
|
|
2085
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2153
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2086
2154
|
|
|
2087
2155
|
## `eas update:roll-back-to-embedded`
|
|
2088
2156
|
|
|
@@ -2112,7 +2180,7 @@ DESCRIPTION
|
|
|
2112
2180
|
roll back to the embedded update
|
|
2113
2181
|
```
|
|
2114
2182
|
|
|
2115
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2183
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2116
2184
|
|
|
2117
2185
|
## `eas update:rollback`
|
|
2118
2186
|
|
|
@@ -2133,7 +2201,7 @@ DESCRIPTION
|
|
|
2133
2201
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2134
2202
|
```
|
|
2135
2203
|
|
|
2136
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2204
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2137
2205
|
|
|
2138
2206
|
## `eas update:view GROUPID`
|
|
2139
2207
|
|
|
@@ -2157,7 +2225,7 @@ DESCRIPTION
|
|
|
2157
2225
|
update group details
|
|
2158
2226
|
```
|
|
2159
2227
|
|
|
2160
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2228
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2161
2229
|
|
|
2162
2230
|
## `eas upload`
|
|
2163
2231
|
|
|
@@ -2178,7 +2246,7 @@ DESCRIPTION
|
|
|
2178
2246
|
upload a local build and generate a sharable link
|
|
2179
2247
|
```
|
|
2180
2248
|
|
|
2181
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2249
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2182
2250
|
|
|
2183
2251
|
## `eas webhook:create`
|
|
2184
2252
|
|
|
@@ -2200,7 +2268,7 @@ DESCRIPTION
|
|
|
2200
2268
|
create a webhook
|
|
2201
2269
|
```
|
|
2202
2270
|
|
|
2203
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2271
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2204
2272
|
|
|
2205
2273
|
## `eas webhook:delete [ID]`
|
|
2206
2274
|
|
|
@@ -2220,7 +2288,7 @@ DESCRIPTION
|
|
|
2220
2288
|
delete a webhook
|
|
2221
2289
|
```
|
|
2222
2290
|
|
|
2223
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2291
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2224
2292
|
|
|
2225
2293
|
## `eas webhook:list`
|
|
2226
2294
|
|
|
@@ -2239,7 +2307,7 @@ DESCRIPTION
|
|
|
2239
2307
|
list webhooks
|
|
2240
2308
|
```
|
|
2241
2309
|
|
|
2242
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2310
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2243
2311
|
|
|
2244
2312
|
## `eas webhook:update`
|
|
2245
2313
|
|
|
@@ -2262,7 +2330,7 @@ DESCRIPTION
|
|
|
2262
2330
|
update a webhook
|
|
2263
2331
|
```
|
|
2264
2332
|
|
|
2265
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2333
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2266
2334
|
|
|
2267
2335
|
## `eas webhook:view ID`
|
|
2268
2336
|
|
|
@@ -2279,7 +2347,7 @@ DESCRIPTION
|
|
|
2279
2347
|
view a webhook
|
|
2280
2348
|
```
|
|
2281
2349
|
|
|
2282
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2350
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2283
2351
|
|
|
2284
2352
|
## `eas whoami`
|
|
2285
2353
|
|
|
@@ -2400,7 +2468,7 @@ DESCRIPTION
|
|
|
2400
2468
|
to cancel.
|
|
2401
2469
|
```
|
|
2402
2470
|
|
|
2403
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2471
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2404
2472
|
|
|
2405
2473
|
## `eas workflow:create [NAME]`
|
|
2406
2474
|
|
|
@@ -2420,7 +2488,7 @@ DESCRIPTION
|
|
|
2420
2488
|
create a new workflow configuration YAML file
|
|
2421
2489
|
```
|
|
2422
2490
|
|
|
2423
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2491
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2424
2492
|
|
|
2425
2493
|
## `eas workflow:logs [ID]`
|
|
2426
2494
|
|
|
@@ -2444,7 +2512,7 @@ DESCRIPTION
|
|
|
2444
2512
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2445
2513
|
```
|
|
2446
2514
|
|
|
2447
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2515
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2448
2516
|
|
|
2449
2517
|
## `eas workflow:run FILE`
|
|
2450
2518
|
|
|
@@ -2484,7 +2552,7 @@ FLAG DESCRIPTIONS
|
|
|
2484
2552
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2485
2553
|
```
|
|
2486
2554
|
|
|
2487
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2555
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2488
2556
|
|
|
2489
2557
|
## `eas workflow:runs`
|
|
2490
2558
|
|
|
@@ -2506,7 +2574,7 @@ DESCRIPTION
|
|
|
2506
2574
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2507
2575
|
```
|
|
2508
2576
|
|
|
2509
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2577
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2510
2578
|
|
|
2511
2579
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2512
2580
|
|
|
@@ -2534,7 +2602,7 @@ FLAG DESCRIPTIONS
|
|
|
2534
2602
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2535
2603
|
```
|
|
2536
2604
|
|
|
2537
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2605
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2538
2606
|
|
|
2539
2607
|
## `eas workflow:validate PATH`
|
|
2540
2608
|
|
|
@@ -2554,7 +2622,7 @@ DESCRIPTION
|
|
|
2554
2622
|
validate a workflow configuration yaml file
|
|
2555
2623
|
```
|
|
2556
2624
|
|
|
2557
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2625
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2558
2626
|
|
|
2559
2627
|
## `eas workflow:view [ID]`
|
|
2560
2628
|
|
|
@@ -2576,5 +2644,5 @@ DESCRIPTION
|
|
|
2576
2644
|
workflow runs for the current project.
|
|
2577
2645
|
```
|
|
2578
2646
|
|
|
2579
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2647
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.9.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2580
2648
|
<!-- commandsstop -->
|