eas-cli 18.3.0 → 18.5.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 +98 -95
- package/build/build/android/prepareJob.js +2 -2
- package/build/build/build.js +27 -6
- package/build/build/ios/prepareJob.js +2 -2
- package/build/build/metadata.js +2 -1
- package/build/commandUtils/EasCommand.js +23 -2
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +2 -0
- package/build/commandUtils/flags.d.ts +1 -0
- package/build/commandUtils/flags.js +12 -0
- package/build/commandUtils/workflow/fetchLogs.js +11 -2
- package/build/commandUtils/workflow/types.d.ts +5 -1
- package/build/commandUtils/workflow/utils.js +22 -16
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +9 -1
- package/build/commands/metadata/pull.d.ts +1 -0
- package/build/commands/metadata/pull.js +11 -4
- package/build/commands/metadata/push.d.ts +1 -0
- package/build/commands/metadata/push.js +11 -4
- package/build/commands/project/onboarding.js +3 -0
- package/build/commands/workflow/logs.js +12 -12
- package/build/graphql/generated.d.ts +673 -46
- package/build/graphql/generated.js +58 -20
- package/build/graphql/queries/UserQuery.js +3 -0
- package/build/graphql/types/Update.js +3 -0
- package/build/metadata/apple/config/reader.d.ts +5 -1
- package/build/metadata/apple/config/reader.js +8 -0
- package/build/metadata/apple/config/writer.d.ts +5 -1
- package/build/metadata/apple/config/writer.js +13 -0
- package/build/metadata/apple/data.d.ts +6 -2
- package/build/metadata/apple/rules/infoRestrictedWords.js +6 -1
- package/build/metadata/apple/tasks/age-rating.d.ts +1 -1
- package/build/metadata/apple/tasks/age-rating.js +19 -3
- package/build/metadata/apple/tasks/app-review-detail.js +7 -2
- package/build/metadata/apple/tasks/index.js +4 -0
- package/build/metadata/apple/tasks/previews.d.ts +18 -0
- package/build/metadata/apple/tasks/previews.js +208 -0
- package/build/metadata/apple/tasks/screenshots.d.ts +18 -0
- package/build/metadata/apple/tasks/screenshots.js +224 -0
- package/build/metadata/apple/types.d.ts +34 -1
- package/build/metadata/auth.d.ts +11 -1
- package/build/metadata/auth.js +96 -2
- package/build/metadata/download.d.ts +5 -1
- package/build/metadata/download.js +16 -8
- package/build/metadata/upload.d.ts +5 -1
- package/build/metadata/upload.js +11 -4
- package/build/project/projectUtils.d.ts +0 -2
- package/build/project/projectUtils.js +0 -12
- package/build/project/workflow.js +1 -1
- package/build/sentry.d.ts +2 -0
- package/build/sentry.js +22 -0
- package/build/update/utils.d.ts +2 -2
- package/build/update/utils.js +1 -0
- package/build/user/User.d.ts +2 -2
- package/build/user/User.js +3 -0
- package/build/user/expoBrowserAuthFlowLauncher.js +70 -13
- package/oclif.manifest.json +1995 -1918
- package/package.json +12 -11
- package/schema/metadata-0.json +36 -0
package/README.md
CHANGED
|
@@ -178,7 +178,7 @@ ALIASES
|
|
|
178
178
|
$ eas login
|
|
179
179
|
```
|
|
180
180
|
|
|
181
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
181
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
182
182
|
|
|
183
183
|
## `eas account:logout`
|
|
184
184
|
|
|
@@ -195,7 +195,7 @@ ALIASES
|
|
|
195
195
|
$ eas logout
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
198
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
199
199
|
|
|
200
200
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
201
201
|
|
|
@@ -217,7 +217,7 @@ DESCRIPTION
|
|
|
217
217
|
view account usage and billing for the current cycle
|
|
218
218
|
```
|
|
219
219
|
|
|
220
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
220
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
221
221
|
|
|
222
222
|
## `eas account:view`
|
|
223
223
|
|
|
@@ -234,7 +234,7 @@ ALIASES
|
|
|
234
234
|
$ eas whoami
|
|
235
235
|
```
|
|
236
236
|
|
|
237
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
237
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
238
238
|
|
|
239
239
|
## `eas analytics [STATUS]`
|
|
240
240
|
|
|
@@ -248,7 +248,7 @@ DESCRIPTION
|
|
|
248
248
|
display or change analytics settings
|
|
249
249
|
```
|
|
250
250
|
|
|
251
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
251
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
252
252
|
|
|
253
253
|
## `eas autocomplete [SHELL]`
|
|
254
254
|
|
|
@@ -300,7 +300,7 @@ DESCRIPTION
|
|
|
300
300
|
create a branch
|
|
301
301
|
```
|
|
302
302
|
|
|
303
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
303
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
304
304
|
|
|
305
305
|
## `eas branch:delete [NAME]`
|
|
306
306
|
|
|
@@ -321,7 +321,7 @@ DESCRIPTION
|
|
|
321
321
|
delete a branch
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
325
325
|
|
|
326
326
|
## `eas branch:list`
|
|
327
327
|
|
|
@@ -341,7 +341,7 @@ DESCRIPTION
|
|
|
341
341
|
list all branches
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
344
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
345
345
|
|
|
346
346
|
## `eas branch:rename`
|
|
347
347
|
|
|
@@ -361,7 +361,7 @@ DESCRIPTION
|
|
|
361
361
|
rename a branch
|
|
362
362
|
```
|
|
363
363
|
|
|
364
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
364
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
365
365
|
|
|
366
366
|
## `eas branch:view [NAME]`
|
|
367
367
|
|
|
@@ -384,7 +384,7 @@ DESCRIPTION
|
|
|
384
384
|
view a branch
|
|
385
385
|
```
|
|
386
386
|
|
|
387
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
387
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
388
388
|
|
|
389
389
|
## `eas build`
|
|
390
390
|
|
|
@@ -422,7 +422,7 @@ DESCRIPTION
|
|
|
422
422
|
start a build
|
|
423
423
|
```
|
|
424
424
|
|
|
425
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
425
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
426
426
|
|
|
427
427
|
## `eas build:cancel [BUILD_ID]`
|
|
428
428
|
|
|
@@ -442,7 +442,7 @@ DESCRIPTION
|
|
|
442
442
|
cancel a build
|
|
443
443
|
```
|
|
444
444
|
|
|
445
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
445
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
446
446
|
|
|
447
447
|
## `eas build:configure`
|
|
448
448
|
|
|
@@ -460,7 +460,7 @@ DESCRIPTION
|
|
|
460
460
|
configure the project to support EAS Build
|
|
461
461
|
```
|
|
462
462
|
|
|
463
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
463
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
464
464
|
|
|
465
465
|
## `eas build:delete [BUILD_ID]`
|
|
466
466
|
|
|
@@ -480,7 +480,7 @@ DESCRIPTION
|
|
|
480
480
|
delete a build
|
|
481
481
|
```
|
|
482
482
|
|
|
483
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
483
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
484
484
|
|
|
485
485
|
## `eas build:dev`
|
|
486
486
|
|
|
@@ -488,19 +488,20 @@ run dev client simulator/emulator build with matching fingerprint or create a ne
|
|
|
488
488
|
|
|
489
489
|
```
|
|
490
490
|
USAGE
|
|
491
|
-
$ eas build:dev [-p ios|android] [-e PROFILE_NAME]
|
|
491
|
+
$ eas build:dev [-p ios|android] [-e PROFILE_NAME] [--skip-build-if-not-found]
|
|
492
492
|
|
|
493
493
|
FLAGS
|
|
494
|
-
-e, --profile=PROFILE_NAME
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
-p, --platform=<option>
|
|
494
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. It must be a profile allowing to create
|
|
495
|
+
emulator/simulator internal distribution dev client builds. The "development-simulator"
|
|
496
|
+
build profile will be selected by default.
|
|
497
|
+
-p, --platform=<option> <options: ios|android>
|
|
498
|
+
--skip-build-if-not-found Skip build if no successful build with matching fingerprint is found.
|
|
498
499
|
|
|
499
500
|
DESCRIPTION
|
|
500
501
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
501
502
|
```
|
|
502
503
|
|
|
503
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
504
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
504
505
|
|
|
505
506
|
## `eas build:download`
|
|
506
507
|
|
|
@@ -521,7 +522,7 @@ DESCRIPTION
|
|
|
521
522
|
download simulator/emulator builds for a given fingerprint hash
|
|
522
523
|
```
|
|
523
524
|
|
|
524
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
525
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
525
526
|
|
|
526
527
|
## `eas build:inspect`
|
|
527
528
|
|
|
@@ -559,7 +560,7 @@ DESCRIPTION
|
|
|
559
560
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
560
561
|
```
|
|
561
562
|
|
|
562
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
563
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
563
564
|
|
|
564
565
|
## `eas build:list`
|
|
565
566
|
|
|
@@ -599,7 +600,7 @@ DESCRIPTION
|
|
|
599
600
|
list all builds for your project
|
|
600
601
|
```
|
|
601
602
|
|
|
602
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
603
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
603
604
|
|
|
604
605
|
## `eas build:resign`
|
|
605
606
|
|
|
@@ -629,7 +630,7 @@ DESCRIPTION
|
|
|
629
630
|
re-sign a build archive
|
|
630
631
|
```
|
|
631
632
|
|
|
632
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
633
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
633
634
|
|
|
634
635
|
## `eas build:run`
|
|
635
636
|
|
|
@@ -655,7 +656,7 @@ DESCRIPTION
|
|
|
655
656
|
run simulator/emulator builds from eas-cli
|
|
656
657
|
```
|
|
657
658
|
|
|
658
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
659
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
659
660
|
|
|
660
661
|
## `eas build:submit`
|
|
661
662
|
|
|
@@ -707,7 +708,7 @@ DESCRIPTION
|
|
|
707
708
|
get the latest version from EAS servers
|
|
708
709
|
```
|
|
709
710
|
|
|
710
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
711
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
711
712
|
|
|
712
713
|
## `eas build:version:set`
|
|
713
714
|
|
|
@@ -725,7 +726,7 @@ DESCRIPTION
|
|
|
725
726
|
update version of an app
|
|
726
727
|
```
|
|
727
728
|
|
|
728
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
729
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
729
730
|
|
|
730
731
|
## `eas build:version:sync`
|
|
731
732
|
|
|
@@ -743,7 +744,7 @@ DESCRIPTION
|
|
|
743
744
|
update a version in native code with a value stored on EAS servers
|
|
744
745
|
```
|
|
745
746
|
|
|
746
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
747
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
747
748
|
|
|
748
749
|
## `eas build:view [BUILD_ID]`
|
|
749
750
|
|
|
@@ -760,7 +761,7 @@ DESCRIPTION
|
|
|
760
761
|
view a build for your project
|
|
761
762
|
```
|
|
762
763
|
|
|
763
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
764
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
764
765
|
|
|
765
766
|
## `eas channel:create [NAME]`
|
|
766
767
|
|
|
@@ -781,7 +782,7 @@ DESCRIPTION
|
|
|
781
782
|
create a channel
|
|
782
783
|
```
|
|
783
784
|
|
|
784
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
785
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
785
786
|
|
|
786
787
|
## `eas channel:delete [NAME]`
|
|
787
788
|
|
|
@@ -802,7 +803,7 @@ DESCRIPTION
|
|
|
802
803
|
Delete a channel
|
|
803
804
|
```
|
|
804
805
|
|
|
805
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
806
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
806
807
|
|
|
807
808
|
## `eas channel:edit [NAME]`
|
|
808
809
|
|
|
@@ -824,7 +825,7 @@ DESCRIPTION
|
|
|
824
825
|
point a channel at a new branch
|
|
825
826
|
```
|
|
826
827
|
|
|
827
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
828
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
828
829
|
|
|
829
830
|
## `eas channel:list`
|
|
830
831
|
|
|
@@ -844,7 +845,7 @@ DESCRIPTION
|
|
|
844
845
|
list all channels
|
|
845
846
|
```
|
|
846
847
|
|
|
847
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
848
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
848
849
|
|
|
849
850
|
## `eas channel:pause [NAME]`
|
|
850
851
|
|
|
@@ -866,7 +867,7 @@ DESCRIPTION
|
|
|
866
867
|
pause a channel to stop it from sending updates
|
|
867
868
|
```
|
|
868
869
|
|
|
869
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
870
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
870
871
|
|
|
871
872
|
## `eas channel:resume [NAME]`
|
|
872
873
|
|
|
@@ -888,7 +889,7 @@ DESCRIPTION
|
|
|
888
889
|
resume a channel to start sending updates
|
|
889
890
|
```
|
|
890
891
|
|
|
891
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
892
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
892
893
|
|
|
893
894
|
## `eas channel:rollout [CHANNEL]`
|
|
894
895
|
|
|
@@ -923,7 +924,7 @@ DESCRIPTION
|
|
|
923
924
|
Roll a new branch out on a channel incrementally.
|
|
924
925
|
```
|
|
925
926
|
|
|
926
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
927
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
927
928
|
|
|
928
929
|
## `eas channel:view [NAME]`
|
|
929
930
|
|
|
@@ -946,7 +947,7 @@ DESCRIPTION
|
|
|
946
947
|
view a channel
|
|
947
948
|
```
|
|
948
949
|
|
|
949
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
950
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
950
951
|
|
|
951
952
|
## `eas config`
|
|
952
953
|
|
|
@@ -967,7 +968,7 @@ DESCRIPTION
|
|
|
967
968
|
display project configuration (app.json + eas.json)
|
|
968
969
|
```
|
|
969
970
|
|
|
970
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
971
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/config.ts)_
|
|
971
972
|
|
|
972
973
|
## `eas credentials`
|
|
973
974
|
|
|
@@ -984,7 +985,7 @@ DESCRIPTION
|
|
|
984
985
|
manage credentials
|
|
985
986
|
```
|
|
986
987
|
|
|
987
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
988
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
988
989
|
|
|
989
990
|
## `eas credentials:configure-build`
|
|
990
991
|
|
|
@@ -1002,7 +1003,7 @@ DESCRIPTION
|
|
|
1002
1003
|
Set up credentials for building your project.
|
|
1003
1004
|
```
|
|
1004
1005
|
|
|
1005
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1006
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1006
1007
|
|
|
1007
1008
|
## `eas deploy [options]`
|
|
1008
1009
|
|
|
@@ -1031,7 +1032,7 @@ ALIASES
|
|
|
1031
1032
|
$ eas worker:deploy
|
|
1032
1033
|
```
|
|
1033
1034
|
|
|
1034
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1035
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1035
1036
|
|
|
1036
1037
|
## `eas deploy:alias`
|
|
1037
1038
|
|
|
@@ -1056,7 +1057,7 @@ ALIASES
|
|
|
1056
1057
|
$ eas deploy:promote
|
|
1057
1058
|
```
|
|
1058
1059
|
|
|
1059
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1060
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1060
1061
|
|
|
1061
1062
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1062
1063
|
|
|
@@ -1077,7 +1078,7 @@ ALIASES
|
|
|
1077
1078
|
$ eas worker:alias:delete
|
|
1078
1079
|
```
|
|
1079
1080
|
|
|
1080
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1081
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1081
1082
|
|
|
1082
1083
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1083
1084
|
|
|
@@ -1098,7 +1099,7 @@ ALIASES
|
|
|
1098
1099
|
$ eas worker:delete
|
|
1099
1100
|
```
|
|
1100
1101
|
|
|
1101
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1102
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1102
1103
|
|
|
1103
1104
|
## `eas deploy:promote`
|
|
1104
1105
|
|
|
@@ -1135,7 +1136,7 @@ DESCRIPTION
|
|
|
1135
1136
|
register new Apple Devices to use for internal distribution
|
|
1136
1137
|
```
|
|
1137
1138
|
|
|
1138
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1139
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1139
1140
|
|
|
1140
1141
|
## `eas device:delete`
|
|
1141
1142
|
|
|
@@ -1155,7 +1156,7 @@ DESCRIPTION
|
|
|
1155
1156
|
remove a registered device from your account
|
|
1156
1157
|
```
|
|
1157
1158
|
|
|
1158
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1159
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1159
1160
|
|
|
1160
1161
|
## `eas device:list`
|
|
1161
1162
|
|
|
@@ -1176,7 +1177,7 @@ DESCRIPTION
|
|
|
1176
1177
|
list all registered devices for your account
|
|
1177
1178
|
```
|
|
1178
1179
|
|
|
1179
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1180
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1180
1181
|
|
|
1181
1182
|
## `eas device:rename`
|
|
1182
1183
|
|
|
@@ -1197,7 +1198,7 @@ DESCRIPTION
|
|
|
1197
1198
|
rename a registered device
|
|
1198
1199
|
```
|
|
1199
1200
|
|
|
1200
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1201
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1201
1202
|
|
|
1202
1203
|
## `eas device:view [UDID]`
|
|
1203
1204
|
|
|
@@ -1211,7 +1212,7 @@ DESCRIPTION
|
|
|
1211
1212
|
view a device for your project
|
|
1212
1213
|
```
|
|
1213
1214
|
|
|
1214
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1215
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1215
1216
|
|
|
1216
1217
|
## `eas diagnostics`
|
|
1217
1218
|
|
|
@@ -1225,7 +1226,7 @@ DESCRIPTION
|
|
|
1225
1226
|
display environment info
|
|
1226
1227
|
```
|
|
1227
1228
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1229
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1229
1230
|
|
|
1230
1231
|
## `eas env:create [ENVIRONMENT]`
|
|
1231
1232
|
|
|
@@ -1257,7 +1258,7 @@ DESCRIPTION
|
|
|
1257
1258
|
create an environment variable for the current project or account
|
|
1258
1259
|
```
|
|
1259
1260
|
|
|
1260
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1261
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1261
1262
|
|
|
1262
1263
|
## `eas env:delete [ENVIRONMENT]`
|
|
1263
1264
|
|
|
@@ -1283,7 +1284,7 @@ DESCRIPTION
|
|
|
1283
1284
|
delete an environment variable for the current project or account
|
|
1284
1285
|
```
|
|
1285
1286
|
|
|
1286
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1287
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1287
1288
|
|
|
1288
1289
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1289
1290
|
|
|
@@ -1305,7 +1306,7 @@ DESCRIPTION
|
|
|
1305
1306
|
execute a command with environment variables from the selected environment
|
|
1306
1307
|
```
|
|
1307
1308
|
|
|
1308
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1309
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1309
1310
|
|
|
1310
1311
|
## `eas env:get [ENVIRONMENT]`
|
|
1311
1312
|
|
|
@@ -1333,7 +1334,7 @@ DESCRIPTION
|
|
|
1333
1334
|
view an environment variable for the current project or account
|
|
1334
1335
|
```
|
|
1335
1336
|
|
|
1336
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1337
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1337
1338
|
|
|
1338
1339
|
## `eas env:list [ENVIRONMENT]`
|
|
1339
1340
|
|
|
@@ -1361,7 +1362,7 @@ DESCRIPTION
|
|
|
1361
1362
|
list environment variables for the current project or account
|
|
1362
1363
|
```
|
|
1363
1364
|
|
|
1364
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1365
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1365
1366
|
|
|
1366
1367
|
## `eas env:pull [ENVIRONMENT]`
|
|
1367
1368
|
|
|
@@ -1384,7 +1385,7 @@ DESCRIPTION
|
|
|
1384
1385
|
pull environment variables for the selected environment to .env file
|
|
1385
1386
|
```
|
|
1386
1387
|
|
|
1387
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1388
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1388
1389
|
|
|
1389
1390
|
## `eas env:push [ENVIRONMENT]`
|
|
1390
1391
|
|
|
@@ -1406,7 +1407,7 @@ DESCRIPTION
|
|
|
1406
1407
|
push environment variables from .env file to the selected environment
|
|
1407
1408
|
```
|
|
1408
1409
|
|
|
1409
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1410
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1410
1411
|
|
|
1411
1412
|
## `eas env:update [ENVIRONMENT]`
|
|
1412
1413
|
|
|
@@ -1440,7 +1441,7 @@ DESCRIPTION
|
|
|
1440
1441
|
update an environment variable on the current project or account
|
|
1441
1442
|
```
|
|
1442
1443
|
|
|
1443
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1444
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1444
1445
|
|
|
1445
1446
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1446
1447
|
|
|
@@ -1484,7 +1485,7 @@ EXAMPLES
|
|
|
1484
1485
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1485
1486
|
```
|
|
1486
1487
|
|
|
1487
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1488
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1488
1489
|
|
|
1489
1490
|
## `eas fingerprint:generate`
|
|
1490
1491
|
|
|
@@ -1515,7 +1516,7 @@ EXAMPLES
|
|
|
1515
1516
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1516
1517
|
```
|
|
1517
1518
|
|
|
1518
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1519
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1519
1520
|
|
|
1520
1521
|
## `eas help [COMMAND]`
|
|
1521
1522
|
|
|
@@ -1624,7 +1625,7 @@ DESCRIPTION
|
|
|
1624
1625
|
validate the local store configuration
|
|
1625
1626
|
```
|
|
1626
1627
|
|
|
1627
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1628
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1628
1629
|
|
|
1629
1630
|
## `eas metadata:pull`
|
|
1630
1631
|
|
|
@@ -1632,16 +1633,17 @@ generate the local store configuration from the app stores
|
|
|
1632
1633
|
|
|
1633
1634
|
```
|
|
1634
1635
|
USAGE
|
|
1635
|
-
$ eas metadata:pull [-e <value>]
|
|
1636
|
+
$ eas metadata:pull [-e <value>] [--non-interactive]
|
|
1636
1637
|
|
|
1637
1638
|
FLAGS
|
|
1638
1639
|
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
1640
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1639
1641
|
|
|
1640
1642
|
DESCRIPTION
|
|
1641
1643
|
generate the local store configuration from the app stores
|
|
1642
1644
|
```
|
|
1643
1645
|
|
|
1644
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1646
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1645
1647
|
|
|
1646
1648
|
## `eas metadata:push`
|
|
1647
1649
|
|
|
@@ -1649,16 +1651,17 @@ sync the local store configuration to the app stores
|
|
|
1649
1651
|
|
|
1650
1652
|
```
|
|
1651
1653
|
USAGE
|
|
1652
|
-
$ eas metadata:push [-e <value>]
|
|
1654
|
+
$ eas metadata:push [-e <value>] [--non-interactive]
|
|
1653
1655
|
|
|
1654
1656
|
FLAGS
|
|
1655
1657
|
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
1658
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1656
1659
|
|
|
1657
1660
|
DESCRIPTION
|
|
1658
1661
|
sync the local store configuration to the app stores
|
|
1659
1662
|
```
|
|
1660
1663
|
|
|
1661
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1664
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1662
1665
|
|
|
1663
1666
|
## `eas new [PATH]`
|
|
1664
1667
|
|
|
@@ -1710,7 +1713,7 @@ DESCRIPTION
|
|
|
1710
1713
|
open the project page in a web browser
|
|
1711
1714
|
```
|
|
1712
1715
|
|
|
1713
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1716
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/open.ts)_
|
|
1714
1717
|
|
|
1715
1718
|
## `eas project:info`
|
|
1716
1719
|
|
|
@@ -1724,7 +1727,7 @@ DESCRIPTION
|
|
|
1724
1727
|
information about the current project
|
|
1725
1728
|
```
|
|
1726
1729
|
|
|
1727
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1730
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1728
1731
|
|
|
1729
1732
|
## `eas project:init`
|
|
1730
1733
|
|
|
@@ -1747,7 +1750,7 @@ ALIASES
|
|
|
1747
1750
|
$ eas init
|
|
1748
1751
|
```
|
|
1749
1752
|
|
|
1750
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1753
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1751
1754
|
|
|
1752
1755
|
## `eas project:new [PATH]`
|
|
1753
1756
|
|
|
@@ -1771,7 +1774,7 @@ ALIASES
|
|
|
1771
1774
|
$ eas new
|
|
1772
1775
|
```
|
|
1773
1776
|
|
|
1774
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1777
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1775
1778
|
|
|
1776
1779
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1777
1780
|
|
|
@@ -1789,7 +1792,7 @@ ALIASES
|
|
|
1789
1792
|
$ eas onboarding
|
|
1790
1793
|
```
|
|
1791
1794
|
|
|
1792
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1795
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1793
1796
|
|
|
1794
1797
|
## `eas submit`
|
|
1795
1798
|
|
|
@@ -1822,7 +1825,7 @@ ALIASES
|
|
|
1822
1825
|
$ eas build:submit
|
|
1823
1826
|
```
|
|
1824
1827
|
|
|
1825
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1828
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1826
1829
|
|
|
1827
1830
|
## `eas update`
|
|
1828
1831
|
|
|
@@ -1865,7 +1868,7 @@ DESCRIPTION
|
|
|
1865
1868
|
publish an update group
|
|
1866
1869
|
```
|
|
1867
1870
|
|
|
1868
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1871
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1869
1872
|
|
|
1870
1873
|
## `eas update:configure`
|
|
1871
1874
|
|
|
@@ -1886,7 +1889,7 @@ DESCRIPTION
|
|
|
1886
1889
|
configure the project to support EAS Update
|
|
1887
1890
|
```
|
|
1888
1891
|
|
|
1889
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1892
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1890
1893
|
|
|
1891
1894
|
## `eas update:delete GROUPID`
|
|
1892
1895
|
|
|
@@ -1907,7 +1910,7 @@ DESCRIPTION
|
|
|
1907
1910
|
delete all the updates in an update group
|
|
1908
1911
|
```
|
|
1909
1912
|
|
|
1910
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1913
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1911
1914
|
|
|
1912
1915
|
## `eas update:edit [GROUPID]`
|
|
1913
1916
|
|
|
@@ -1932,7 +1935,7 @@ DESCRIPTION
|
|
|
1932
1935
|
edit all the updates in an update group
|
|
1933
1936
|
```
|
|
1934
1937
|
|
|
1935
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1938
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1936
1939
|
|
|
1937
1940
|
## `eas update:list`
|
|
1938
1941
|
|
|
@@ -1959,7 +1962,7 @@ DESCRIPTION
|
|
|
1959
1962
|
view the recent updates
|
|
1960
1963
|
```
|
|
1961
1964
|
|
|
1962
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1965
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1963
1966
|
|
|
1964
1967
|
## `eas update:republish`
|
|
1965
1968
|
|
|
@@ -1997,7 +2000,7 @@ DESCRIPTION
|
|
|
1997
2000
|
roll back to an existing update
|
|
1998
2001
|
```
|
|
1999
2002
|
|
|
2000
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2003
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2001
2004
|
|
|
2002
2005
|
## `eas update:revert-update-rollout`
|
|
2003
2006
|
|
|
@@ -2025,7 +2028,7 @@ DESCRIPTION
|
|
|
2025
2028
|
revert a rollout update for a project
|
|
2026
2029
|
```
|
|
2027
2030
|
|
|
2028
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2031
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2029
2032
|
|
|
2030
2033
|
## `eas update:roll-back-to-embedded`
|
|
2031
2034
|
|
|
@@ -2055,7 +2058,7 @@ DESCRIPTION
|
|
|
2055
2058
|
roll back to the embedded update
|
|
2056
2059
|
```
|
|
2057
2060
|
|
|
2058
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2061
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2059
2062
|
|
|
2060
2063
|
## `eas update:rollback`
|
|
2061
2064
|
|
|
@@ -2076,7 +2079,7 @@ DESCRIPTION
|
|
|
2076
2079
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2077
2080
|
```
|
|
2078
2081
|
|
|
2079
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2082
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2080
2083
|
|
|
2081
2084
|
## `eas update:view GROUPID`
|
|
2082
2085
|
|
|
@@ -2096,7 +2099,7 @@ DESCRIPTION
|
|
|
2096
2099
|
update group details
|
|
2097
2100
|
```
|
|
2098
2101
|
|
|
2099
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2102
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2100
2103
|
|
|
2101
2104
|
## `eas upload`
|
|
2102
2105
|
|
|
@@ -2117,7 +2120,7 @@ DESCRIPTION
|
|
|
2117
2120
|
upload a local build and generate a sharable link
|
|
2118
2121
|
```
|
|
2119
2122
|
|
|
2120
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2123
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2121
2124
|
|
|
2122
2125
|
## `eas webhook:create`
|
|
2123
2126
|
|
|
@@ -2139,7 +2142,7 @@ DESCRIPTION
|
|
|
2139
2142
|
create a webhook
|
|
2140
2143
|
```
|
|
2141
2144
|
|
|
2142
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2145
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2143
2146
|
|
|
2144
2147
|
## `eas webhook:delete [ID]`
|
|
2145
2148
|
|
|
@@ -2159,7 +2162,7 @@ DESCRIPTION
|
|
|
2159
2162
|
delete a webhook
|
|
2160
2163
|
```
|
|
2161
2164
|
|
|
2162
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2165
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2163
2166
|
|
|
2164
2167
|
## `eas webhook:list`
|
|
2165
2168
|
|
|
@@ -2178,7 +2181,7 @@ DESCRIPTION
|
|
|
2178
2181
|
list webhooks
|
|
2179
2182
|
```
|
|
2180
2183
|
|
|
2181
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2184
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2182
2185
|
|
|
2183
2186
|
## `eas webhook:update`
|
|
2184
2187
|
|
|
@@ -2201,7 +2204,7 @@ DESCRIPTION
|
|
|
2201
2204
|
update a webhook
|
|
2202
2205
|
```
|
|
2203
2206
|
|
|
2204
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2207
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2205
2208
|
|
|
2206
2209
|
## `eas webhook:view ID`
|
|
2207
2210
|
|
|
@@ -2218,7 +2221,7 @@ DESCRIPTION
|
|
|
2218
2221
|
view a webhook
|
|
2219
2222
|
```
|
|
2220
2223
|
|
|
2221
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2224
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2222
2225
|
|
|
2223
2226
|
## `eas whoami`
|
|
2224
2227
|
|
|
@@ -2339,7 +2342,7 @@ DESCRIPTION
|
|
|
2339
2342
|
to cancel.
|
|
2340
2343
|
```
|
|
2341
2344
|
|
|
2342
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2345
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2343
2346
|
|
|
2344
2347
|
## `eas workflow:create [NAME]`
|
|
2345
2348
|
|
|
@@ -2359,7 +2362,7 @@ DESCRIPTION
|
|
|
2359
2362
|
create a new workflow configuration YAML file
|
|
2360
2363
|
```
|
|
2361
2364
|
|
|
2362
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2365
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2363
2366
|
|
|
2364
2367
|
## `eas workflow:logs [ID]`
|
|
2365
2368
|
|
|
@@ -2383,7 +2386,7 @@ DESCRIPTION
|
|
|
2383
2386
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2384
2387
|
```
|
|
2385
2388
|
|
|
2386
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2389
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2387
2390
|
|
|
2388
2391
|
## `eas workflow:run FILE`
|
|
2389
2392
|
|
|
@@ -2423,7 +2426,7 @@ FLAG DESCRIPTIONS
|
|
|
2423
2426
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2424
2427
|
```
|
|
2425
2428
|
|
|
2426
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2429
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2427
2430
|
|
|
2428
2431
|
## `eas workflow:runs`
|
|
2429
2432
|
|
|
@@ -2445,7 +2448,7 @@ DESCRIPTION
|
|
|
2445
2448
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2446
2449
|
```
|
|
2447
2450
|
|
|
2448
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2451
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2449
2452
|
|
|
2450
2453
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2451
2454
|
|
|
@@ -2473,7 +2476,7 @@ FLAG DESCRIPTIONS
|
|
|
2473
2476
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2474
2477
|
```
|
|
2475
2478
|
|
|
2476
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2479
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2477
2480
|
|
|
2478
2481
|
## `eas workflow:validate PATH`
|
|
2479
2482
|
|
|
@@ -2493,7 +2496,7 @@ DESCRIPTION
|
|
|
2493
2496
|
validate a workflow configuration yaml file
|
|
2494
2497
|
```
|
|
2495
2498
|
|
|
2496
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2499
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2497
2500
|
|
|
2498
2501
|
## `eas workflow:view [ID]`
|
|
2499
2502
|
|
|
@@ -2515,5 +2518,5 @@ DESCRIPTION
|
|
|
2515
2518
|
workflow runs for the current project.
|
|
2516
2519
|
```
|
|
2517
2520
|
|
|
2518
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2521
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.5.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2519
2522
|
<!-- commandsstop -->
|