eas-cli 18.10.0 → 18.11.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 +107 -102
- package/build/build/runBuildAndSubmit.d.ts +3 -1
- package/build/build/runBuildAndSubmit.js +12 -4
- package/build/build/utils/repository.js +8 -0
- package/build/build/validateLockfile.d.ts +1 -0
- package/build/build/validateLockfile.js +37 -0
- package/build/commandUtils/buildFlags.d.ts +1 -0
- package/build/commandUtils/buildFlags.js +18 -0
- package/build/commandUtils/convex.d.ts +1 -0
- package/build/commandUtils/convex.js +8 -2
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +12 -2
- package/build/commands/build/run.d.ts +1 -0
- package/build/commands/build/run.js +12 -3
- package/build/commands/integrations/convex/connect.js +12 -4
- package/build/commands/integrations/convex/team/invite.js +6 -1
- package/build/commands/observe/events.js +12 -24
- package/build/commands/observe/logs.d.ts +29 -0
- package/build/commands/observe/logs.js +163 -0
- package/build/commands/observe/metrics.js +11 -19
- package/build/commands/observe/versions.js +11 -19
- package/build/commands/simulator/start.js +84 -5
- package/build/commands/simulator/stop.js +1 -1
- package/build/graphql/generated.d.ts +180 -6
- package/build/graphql/generated.js +16 -3
- package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +2 -2
- package/build/graphql/mutations/DeviceRunSessionMutation.js +4 -4
- package/build/graphql/queries/ObserveQuery.d.ts +21 -1
- package/build/graphql/queries/ObserveQuery.js +80 -0
- package/build/graphql/types/ConvexTeamConnection.d.ts +1 -1
- package/build/graphql/types/ConvexTeamConnection.js +1 -0
- package/build/graphql/types/Observe.d.ts +1 -0
- package/build/graphql/types/Observe.js +26 -1
- package/build/observe/fetchCustomEvents.d.ts +19 -0
- package/build/observe/fetchCustomEvents.js +21 -0
- package/build/observe/formatCustomEvents.d.ts +70 -0
- package/build/observe/formatCustomEvents.js +140 -0
- package/build/observe/formatEvents.js +5 -34
- package/build/observe/formatMetrics.js +2 -7
- package/build/observe/formatUtils.d.ts +27 -0
- package/build/observe/formatUtils.js +64 -0
- package/build/observe/formatVersions.js +2 -9
- package/build/observe/platforms.d.ts +21 -0
- package/build/observe/platforms.js +48 -0
- package/build/observe/resolveProjectContext.d.ts +22 -0
- package/build/observe/resolveProjectContext.js +21 -0
- package/build/run/ios/run.d.ts +2 -1
- package/build/run/ios/run.js +6 -2
- package/build/run/ios/simulator.d.ts +4 -1
- package/build/run/ios/simulator.js +14 -2
- package/build/run/run.d.ts +2 -1
- package/build/run/run.js +2 -2
- package/oclif.manifest.json +955 -762
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -190,7 +190,7 @@ ALIASES
|
|
|
190
190
|
$ eas login
|
|
191
191
|
```
|
|
192
192
|
|
|
193
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
193
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
194
194
|
|
|
195
195
|
## `eas account:logout`
|
|
196
196
|
|
|
@@ -207,7 +207,7 @@ ALIASES
|
|
|
207
207
|
$ eas logout
|
|
208
208
|
```
|
|
209
209
|
|
|
210
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
210
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
211
211
|
|
|
212
212
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
213
213
|
|
|
@@ -229,7 +229,7 @@ DESCRIPTION
|
|
|
229
229
|
view account usage and billing for the current cycle
|
|
230
230
|
```
|
|
231
231
|
|
|
232
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
232
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
233
233
|
|
|
234
234
|
## `eas account:view`
|
|
235
235
|
|
|
@@ -246,7 +246,7 @@ ALIASES
|
|
|
246
246
|
$ eas whoami
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
249
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
250
250
|
|
|
251
251
|
## `eas analytics [STATUS]`
|
|
252
252
|
|
|
@@ -260,7 +260,7 @@ DESCRIPTION
|
|
|
260
260
|
display or change analytics settings
|
|
261
261
|
```
|
|
262
262
|
|
|
263
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
263
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
264
264
|
|
|
265
265
|
## `eas autocomplete [SHELL]`
|
|
266
266
|
|
|
@@ -312,7 +312,7 @@ DESCRIPTION
|
|
|
312
312
|
create a branch
|
|
313
313
|
```
|
|
314
314
|
|
|
315
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
315
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
316
316
|
|
|
317
317
|
## `eas branch:delete [NAME]`
|
|
318
318
|
|
|
@@ -333,7 +333,7 @@ DESCRIPTION
|
|
|
333
333
|
delete a branch
|
|
334
334
|
```
|
|
335
335
|
|
|
336
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
336
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
337
337
|
|
|
338
338
|
## `eas branch:list`
|
|
339
339
|
|
|
@@ -353,7 +353,7 @@ DESCRIPTION
|
|
|
353
353
|
list all branches
|
|
354
354
|
```
|
|
355
355
|
|
|
356
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
356
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
357
357
|
|
|
358
358
|
## `eas branch:rename`
|
|
359
359
|
|
|
@@ -373,7 +373,7 @@ DESCRIPTION
|
|
|
373
373
|
rename a branch
|
|
374
374
|
```
|
|
375
375
|
|
|
376
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
376
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
377
377
|
|
|
378
378
|
## `eas branch:view [NAME]`
|
|
379
379
|
|
|
@@ -396,7 +396,7 @@ DESCRIPTION
|
|
|
396
396
|
view a branch
|
|
397
397
|
```
|
|
398
398
|
|
|
399
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
399
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
400
400
|
|
|
401
401
|
## `eas build`
|
|
402
402
|
|
|
@@ -434,7 +434,7 @@ DESCRIPTION
|
|
|
434
434
|
start a build
|
|
435
435
|
```
|
|
436
436
|
|
|
437
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
437
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
438
438
|
|
|
439
439
|
## `eas build:cancel [BUILD_ID]`
|
|
440
440
|
|
|
@@ -454,7 +454,7 @@ DESCRIPTION
|
|
|
454
454
|
cancel a build
|
|
455
455
|
```
|
|
456
456
|
|
|
457
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
457
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
458
458
|
|
|
459
459
|
## `eas build:configure`
|
|
460
460
|
|
|
@@ -472,7 +472,7 @@ DESCRIPTION
|
|
|
472
472
|
configure the project to support EAS Build
|
|
473
473
|
```
|
|
474
474
|
|
|
475
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
475
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
476
476
|
|
|
477
477
|
## `eas build:delete [BUILD_ID]`
|
|
478
478
|
|
|
@@ -492,7 +492,7 @@ DESCRIPTION
|
|
|
492
492
|
delete a build
|
|
493
493
|
```
|
|
494
494
|
|
|
495
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
495
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
496
496
|
|
|
497
497
|
## `eas build:dev`
|
|
498
498
|
|
|
@@ -500,13 +500,16 @@ run dev client simulator/emulator build with matching fingerprint or create a ne
|
|
|
500
500
|
|
|
501
501
|
```
|
|
502
502
|
USAGE
|
|
503
|
-
$ eas build:dev [-p ios|android] [-e PROFILE_NAME] [--skip-build-if-not-found] [--skip-bundler]
|
|
503
|
+
$ eas build:dev [-p ios|android] [-e PROFILE_NAME] [--skip-build-if-not-found] [--skip-bundler] [--simulator
|
|
504
|
+
<value>]
|
|
504
505
|
|
|
505
506
|
FLAGS
|
|
506
507
|
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. It must be a profile allowing to create
|
|
507
508
|
emulator/simulator internal distribution dev client builds. The "development-simulator"
|
|
508
509
|
build profile will be selected by default.
|
|
509
510
|
-p, --platform=<option> <options: ios|android>
|
|
511
|
+
--simulator=<value> iOS simulator name or UDID to install and run the development build on. If no value is
|
|
512
|
+
provided, you will be prompted to select a simulator.
|
|
510
513
|
--skip-build-if-not-found Skip build if no successful build with matching fingerprint is found.
|
|
511
514
|
--skip-bundler Install and run the development build without starting the bundler server.
|
|
512
515
|
|
|
@@ -514,7 +517,7 @@ DESCRIPTION
|
|
|
514
517
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
515
518
|
```
|
|
516
519
|
|
|
517
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
520
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
518
521
|
|
|
519
522
|
## `eas build:download`
|
|
520
523
|
|
|
@@ -541,7 +544,7 @@ DESCRIPTION
|
|
|
541
544
|
download a simulator/emulator build by build ID or fingerprint hash
|
|
542
545
|
```
|
|
543
546
|
|
|
544
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
547
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
545
548
|
|
|
546
549
|
## `eas build:inspect`
|
|
547
550
|
|
|
@@ -579,7 +582,7 @@ DESCRIPTION
|
|
|
579
582
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
580
583
|
```
|
|
581
584
|
|
|
582
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
585
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
583
586
|
|
|
584
587
|
## `eas build:list`
|
|
585
588
|
|
|
@@ -619,7 +622,7 @@ DESCRIPTION
|
|
|
619
622
|
list all builds for your project
|
|
620
623
|
```
|
|
621
624
|
|
|
622
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
625
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
623
626
|
|
|
624
627
|
## `eas build:resign`
|
|
625
628
|
|
|
@@ -649,7 +652,7 @@ DESCRIPTION
|
|
|
649
652
|
re-sign a build archive
|
|
650
653
|
```
|
|
651
654
|
|
|
652
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
655
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
653
656
|
|
|
654
657
|
## `eas build:run`
|
|
655
658
|
|
|
@@ -658,7 +661,7 @@ run simulator/emulator builds from eas-cli
|
|
|
658
661
|
```
|
|
659
662
|
USAGE
|
|
660
663
|
$ eas build:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios] [-e PROFILE_NAME]
|
|
661
|
-
[--offset <value>] [--limit <value>]
|
|
664
|
+
[--simulator <value>] [--offset <value>] [--limit <value>]
|
|
662
665
|
|
|
663
666
|
FLAGS
|
|
664
667
|
-e, --profile=PROFILE_NAME Name of the build profile used to create the build to run. When specified, only builds
|
|
@@ -669,13 +672,15 @@ FLAGS
|
|
|
669
672
|
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
670
673
|
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
671
674
|
--path=<value> Path to the simulator/emulator build archive or app
|
|
675
|
+
--simulator=<value> iOS simulator name or UDID to install and run the build on. If no value is provided, you
|
|
676
|
+
will be prompted to select a simulator.
|
|
672
677
|
--url=<value> Simulator/Emulator build archive url
|
|
673
678
|
|
|
674
679
|
DESCRIPTION
|
|
675
680
|
run simulator/emulator builds from eas-cli
|
|
676
681
|
```
|
|
677
682
|
|
|
678
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
683
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
679
684
|
|
|
680
685
|
## `eas build:submit`
|
|
681
686
|
|
|
@@ -727,7 +732,7 @@ DESCRIPTION
|
|
|
727
732
|
get the latest version from EAS servers
|
|
728
733
|
```
|
|
729
734
|
|
|
730
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
735
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
731
736
|
|
|
732
737
|
## `eas build:version:set`
|
|
733
738
|
|
|
@@ -745,7 +750,7 @@ DESCRIPTION
|
|
|
745
750
|
update version of an app
|
|
746
751
|
```
|
|
747
752
|
|
|
748
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
753
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
749
754
|
|
|
750
755
|
## `eas build:version:sync`
|
|
751
756
|
|
|
@@ -763,7 +768,7 @@ DESCRIPTION
|
|
|
763
768
|
update a version in native code with a value stored on EAS servers
|
|
764
769
|
```
|
|
765
770
|
|
|
766
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
771
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
767
772
|
|
|
768
773
|
## `eas build:view [BUILD_ID]`
|
|
769
774
|
|
|
@@ -780,7 +785,7 @@ DESCRIPTION
|
|
|
780
785
|
view a build for your project
|
|
781
786
|
```
|
|
782
787
|
|
|
783
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
788
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
784
789
|
|
|
785
790
|
## `eas channel:create [NAME]`
|
|
786
791
|
|
|
@@ -801,7 +806,7 @@ DESCRIPTION
|
|
|
801
806
|
create a channel
|
|
802
807
|
```
|
|
803
808
|
|
|
804
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
809
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
805
810
|
|
|
806
811
|
## `eas channel:delete [NAME]`
|
|
807
812
|
|
|
@@ -822,7 +827,7 @@ DESCRIPTION
|
|
|
822
827
|
Delete a channel
|
|
823
828
|
```
|
|
824
829
|
|
|
825
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
830
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
826
831
|
|
|
827
832
|
## `eas channel:edit [NAME]`
|
|
828
833
|
|
|
@@ -844,7 +849,7 @@ DESCRIPTION
|
|
|
844
849
|
point a channel at a new branch
|
|
845
850
|
```
|
|
846
851
|
|
|
847
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
852
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
848
853
|
|
|
849
854
|
## `eas channel:insights`
|
|
850
855
|
|
|
@@ -868,7 +873,7 @@ DESCRIPTION
|
|
|
868
873
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
869
874
|
```
|
|
870
875
|
|
|
871
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
876
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
872
877
|
|
|
873
878
|
## `eas channel:list`
|
|
874
879
|
|
|
@@ -888,7 +893,7 @@ DESCRIPTION
|
|
|
888
893
|
list all channels
|
|
889
894
|
```
|
|
890
895
|
|
|
891
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
896
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
892
897
|
|
|
893
898
|
## `eas channel:pause [NAME]`
|
|
894
899
|
|
|
@@ -910,7 +915,7 @@ DESCRIPTION
|
|
|
910
915
|
pause a channel to stop it from sending updates
|
|
911
916
|
```
|
|
912
917
|
|
|
913
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
918
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
914
919
|
|
|
915
920
|
## `eas channel:resume [NAME]`
|
|
916
921
|
|
|
@@ -932,7 +937,7 @@ DESCRIPTION
|
|
|
932
937
|
resume a channel to start sending updates
|
|
933
938
|
```
|
|
934
939
|
|
|
935
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
940
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
936
941
|
|
|
937
942
|
## `eas channel:rollout [CHANNEL]`
|
|
938
943
|
|
|
@@ -967,7 +972,7 @@ DESCRIPTION
|
|
|
967
972
|
Roll a new branch out on a channel incrementally.
|
|
968
973
|
```
|
|
969
974
|
|
|
970
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
975
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
971
976
|
|
|
972
977
|
## `eas channel:view [NAME]`
|
|
973
978
|
|
|
@@ -990,7 +995,7 @@ DESCRIPTION
|
|
|
990
995
|
view a channel
|
|
991
996
|
```
|
|
992
997
|
|
|
993
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
998
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
994
999
|
|
|
995
1000
|
## `eas config`
|
|
996
1001
|
|
|
@@ -1011,7 +1016,7 @@ DESCRIPTION
|
|
|
1011
1016
|
display project configuration (app.json + eas.json)
|
|
1012
1017
|
```
|
|
1013
1018
|
|
|
1014
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1019
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/config.ts)_
|
|
1015
1020
|
|
|
1016
1021
|
## `eas credentials`
|
|
1017
1022
|
|
|
@@ -1028,7 +1033,7 @@ DESCRIPTION
|
|
|
1028
1033
|
manage credentials
|
|
1029
1034
|
```
|
|
1030
1035
|
|
|
1031
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1036
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1032
1037
|
|
|
1033
1038
|
## `eas credentials:configure-build`
|
|
1034
1039
|
|
|
@@ -1046,7 +1051,7 @@ DESCRIPTION
|
|
|
1046
1051
|
Set up credentials for building your project.
|
|
1047
1052
|
```
|
|
1048
1053
|
|
|
1049
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1054
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1050
1055
|
|
|
1051
1056
|
## `eas deploy [options]`
|
|
1052
1057
|
|
|
@@ -1075,7 +1080,7 @@ ALIASES
|
|
|
1075
1080
|
$ eas worker:deploy
|
|
1076
1081
|
```
|
|
1077
1082
|
|
|
1078
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1083
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1079
1084
|
|
|
1080
1085
|
## `eas deploy:alias`
|
|
1081
1086
|
|
|
@@ -1100,7 +1105,7 @@ ALIASES
|
|
|
1100
1105
|
$ eas deploy:promote
|
|
1101
1106
|
```
|
|
1102
1107
|
|
|
1103
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1108
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1104
1109
|
|
|
1105
1110
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1106
1111
|
|
|
@@ -1121,7 +1126,7 @@ ALIASES
|
|
|
1121
1126
|
$ eas worker:alias:delete
|
|
1122
1127
|
```
|
|
1123
1128
|
|
|
1124
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1129
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1125
1130
|
|
|
1126
1131
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1127
1132
|
|
|
@@ -1142,7 +1147,7 @@ ALIASES
|
|
|
1142
1147
|
$ eas worker:delete
|
|
1143
1148
|
```
|
|
1144
1149
|
|
|
1145
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1150
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1146
1151
|
|
|
1147
1152
|
## `eas deploy:promote`
|
|
1148
1153
|
|
|
@@ -1179,7 +1184,7 @@ DESCRIPTION
|
|
|
1179
1184
|
register new Apple Devices to use for internal distribution
|
|
1180
1185
|
```
|
|
1181
1186
|
|
|
1182
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1187
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1183
1188
|
|
|
1184
1189
|
## `eas device:delete`
|
|
1185
1190
|
|
|
@@ -1199,7 +1204,7 @@ DESCRIPTION
|
|
|
1199
1204
|
remove a registered device from your account
|
|
1200
1205
|
```
|
|
1201
1206
|
|
|
1202
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1207
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1203
1208
|
|
|
1204
1209
|
## `eas device:list`
|
|
1205
1210
|
|
|
@@ -1220,7 +1225,7 @@ DESCRIPTION
|
|
|
1220
1225
|
list all registered devices for your account
|
|
1221
1226
|
```
|
|
1222
1227
|
|
|
1223
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1228
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1224
1229
|
|
|
1225
1230
|
## `eas device:rename`
|
|
1226
1231
|
|
|
@@ -1241,7 +1246,7 @@ DESCRIPTION
|
|
|
1241
1246
|
rename a registered device
|
|
1242
1247
|
```
|
|
1243
1248
|
|
|
1244
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1249
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1245
1250
|
|
|
1246
1251
|
## `eas device:view [UDID]`
|
|
1247
1252
|
|
|
@@ -1255,7 +1260,7 @@ DESCRIPTION
|
|
|
1255
1260
|
view a device for your project
|
|
1256
1261
|
```
|
|
1257
1262
|
|
|
1258
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1263
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1259
1264
|
|
|
1260
1265
|
## `eas diagnostics`
|
|
1261
1266
|
|
|
@@ -1269,7 +1274,7 @@ DESCRIPTION
|
|
|
1269
1274
|
display environment info
|
|
1270
1275
|
```
|
|
1271
1276
|
|
|
1272
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1277
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1273
1278
|
|
|
1274
1279
|
## `eas env:create [ENVIRONMENT]`
|
|
1275
1280
|
|
|
@@ -1301,7 +1306,7 @@ DESCRIPTION
|
|
|
1301
1306
|
create an environment variable for the current project or account
|
|
1302
1307
|
```
|
|
1303
1308
|
|
|
1304
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1309
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1305
1310
|
|
|
1306
1311
|
## `eas env:delete [ENVIRONMENT]`
|
|
1307
1312
|
|
|
@@ -1327,7 +1332,7 @@ DESCRIPTION
|
|
|
1327
1332
|
delete an environment variable for the current project or account
|
|
1328
1333
|
```
|
|
1329
1334
|
|
|
1330
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1335
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1331
1336
|
|
|
1332
1337
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1333
1338
|
|
|
@@ -1349,7 +1354,7 @@ DESCRIPTION
|
|
|
1349
1354
|
execute a command with environment variables from the selected environment
|
|
1350
1355
|
```
|
|
1351
1356
|
|
|
1352
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1357
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1353
1358
|
|
|
1354
1359
|
## `eas env:get [ENVIRONMENT]`
|
|
1355
1360
|
|
|
@@ -1377,7 +1382,7 @@ DESCRIPTION
|
|
|
1377
1382
|
view an environment variable for the current project or account
|
|
1378
1383
|
```
|
|
1379
1384
|
|
|
1380
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1385
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1381
1386
|
|
|
1382
1387
|
## `eas env:list [ENVIRONMENT]`
|
|
1383
1388
|
|
|
@@ -1405,7 +1410,7 @@ DESCRIPTION
|
|
|
1405
1410
|
list environment variables for the current project or account
|
|
1406
1411
|
```
|
|
1407
1412
|
|
|
1408
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1413
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1409
1414
|
|
|
1410
1415
|
## `eas env:pull [ENVIRONMENT]`
|
|
1411
1416
|
|
|
@@ -1428,7 +1433,7 @@ DESCRIPTION
|
|
|
1428
1433
|
pull environment variables for the selected environment to .env file
|
|
1429
1434
|
```
|
|
1430
1435
|
|
|
1431
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1436
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1432
1437
|
|
|
1433
1438
|
## `eas env:push [ENVIRONMENT]`
|
|
1434
1439
|
|
|
@@ -1450,7 +1455,7 @@ DESCRIPTION
|
|
|
1450
1455
|
push environment variables from .env file to the selected environment
|
|
1451
1456
|
```
|
|
1452
1457
|
|
|
1453
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1458
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1454
1459
|
|
|
1455
1460
|
## `eas env:update [ENVIRONMENT]`
|
|
1456
1461
|
|
|
@@ -1484,7 +1489,7 @@ DESCRIPTION
|
|
|
1484
1489
|
update an environment variable on the current project or account
|
|
1485
1490
|
```
|
|
1486
1491
|
|
|
1487
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1492
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1488
1493
|
|
|
1489
1494
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1490
1495
|
|
|
@@ -1528,7 +1533,7 @@ EXAMPLES
|
|
|
1528
1533
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1529
1534
|
```
|
|
1530
1535
|
|
|
1531
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1536
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1532
1537
|
|
|
1533
1538
|
## `eas fingerprint:generate`
|
|
1534
1539
|
|
|
@@ -1559,7 +1564,7 @@ EXAMPLES
|
|
|
1559
1564
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1560
1565
|
```
|
|
1561
1566
|
|
|
1562
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1567
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1563
1568
|
|
|
1564
1569
|
## `eas help [COMMAND]`
|
|
1565
1570
|
|
|
@@ -1638,7 +1643,7 @@ DESCRIPTION
|
|
|
1638
1643
|
connect a project to an App Store Connect app
|
|
1639
1644
|
```
|
|
1640
1645
|
|
|
1641
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1646
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
|
|
1642
1647
|
|
|
1643
1648
|
## `eas integrations:asc:disconnect`
|
|
1644
1649
|
|
|
@@ -1657,7 +1662,7 @@ DESCRIPTION
|
|
|
1657
1662
|
disconnect the current project from its App Store Connect app
|
|
1658
1663
|
```
|
|
1659
1664
|
|
|
1660
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1665
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
|
|
1661
1666
|
|
|
1662
1667
|
## `eas integrations:asc:status`
|
|
1663
1668
|
|
|
@@ -1675,7 +1680,7 @@ DESCRIPTION
|
|
|
1675
1680
|
show the App Store Connect app link status for the current project
|
|
1676
1681
|
```
|
|
1677
1682
|
|
|
1678
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1683
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
|
|
1679
1684
|
|
|
1680
1685
|
## `eas integrations:convex:connect`
|
|
1681
1686
|
|
|
@@ -1697,7 +1702,7 @@ DESCRIPTION
|
|
|
1697
1702
|
connect Convex to your Expo project
|
|
1698
1703
|
```
|
|
1699
1704
|
|
|
1700
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1705
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
|
|
1701
1706
|
|
|
1702
1707
|
## `eas integrations:convex:dashboard`
|
|
1703
1708
|
|
|
@@ -1711,7 +1716,7 @@ DESCRIPTION
|
|
|
1711
1716
|
open the Convex dashboard for the linked Convex project
|
|
1712
1717
|
```
|
|
1713
1718
|
|
|
1714
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1719
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
|
|
1715
1720
|
|
|
1716
1721
|
## `eas integrations:convex:project`
|
|
1717
1722
|
|
|
@@ -1725,7 +1730,7 @@ DESCRIPTION
|
|
|
1725
1730
|
display the Convex project linked to the current Expo app
|
|
1726
1731
|
```
|
|
1727
1732
|
|
|
1728
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1733
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
|
|
1729
1734
|
|
|
1730
1735
|
## `eas integrations:convex:project:delete`
|
|
1731
1736
|
|
|
@@ -1743,7 +1748,7 @@ DESCRIPTION
|
|
|
1743
1748
|
remove the Convex project link for the current Expo app from EAS servers
|
|
1744
1749
|
```
|
|
1745
1750
|
|
|
1746
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1751
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
|
|
1747
1752
|
|
|
1748
1753
|
## `eas integrations:convex:team`
|
|
1749
1754
|
|
|
@@ -1757,7 +1762,7 @@ DESCRIPTION
|
|
|
1757
1762
|
display Convex teams linked to the current Expo app's owner account
|
|
1758
1763
|
```
|
|
1759
1764
|
|
|
1760
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1765
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
|
|
1761
1766
|
|
|
1762
1767
|
## `eas integrations:convex:team:delete [CONVEX_TEAM]`
|
|
1763
1768
|
|
|
@@ -1778,7 +1783,7 @@ DESCRIPTION
|
|
|
1778
1783
|
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1779
1784
|
```
|
|
1780
1785
|
|
|
1781
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1786
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
|
|
1782
1787
|
|
|
1783
1788
|
## `eas integrations:convex:team:invite [CONVEX_TEAM]`
|
|
1784
1789
|
|
|
@@ -1798,7 +1803,7 @@ DESCRIPTION
|
|
|
1798
1803
|
send a Convex team invitation to your verified email address
|
|
1799
1804
|
```
|
|
1800
1805
|
|
|
1801
|
-
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1806
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
|
|
1802
1807
|
|
|
1803
1808
|
## `eas login`
|
|
1804
1809
|
|
|
@@ -1850,7 +1855,7 @@ DESCRIPTION
|
|
|
1850
1855
|
validate the local store configuration
|
|
1851
1856
|
```
|
|
1852
1857
|
|
|
1853
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1858
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1854
1859
|
|
|
1855
1860
|
## `eas metadata:pull`
|
|
1856
1861
|
|
|
@@ -1868,7 +1873,7 @@ DESCRIPTION
|
|
|
1868
1873
|
generate the local store configuration from the app stores
|
|
1869
1874
|
```
|
|
1870
1875
|
|
|
1871
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1876
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1872
1877
|
|
|
1873
1878
|
## `eas metadata:push`
|
|
1874
1879
|
|
|
@@ -1886,7 +1891,7 @@ DESCRIPTION
|
|
|
1886
1891
|
sync the local store configuration to the app stores
|
|
1887
1892
|
```
|
|
1888
1893
|
|
|
1889
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1894
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1890
1895
|
|
|
1891
1896
|
## `eas new [PATH]`
|
|
1892
1897
|
|
|
@@ -1938,7 +1943,7 @@ DESCRIPTION
|
|
|
1938
1943
|
open the project page in a web browser
|
|
1939
1944
|
```
|
|
1940
1945
|
|
|
1941
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1946
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/open.ts)_
|
|
1942
1947
|
|
|
1943
1948
|
## `eas project:info`
|
|
1944
1949
|
|
|
@@ -1952,7 +1957,7 @@ DESCRIPTION
|
|
|
1952
1957
|
information about the current project
|
|
1953
1958
|
```
|
|
1954
1959
|
|
|
1955
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1960
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1956
1961
|
|
|
1957
1962
|
## `eas project:init`
|
|
1958
1963
|
|
|
@@ -1975,7 +1980,7 @@ ALIASES
|
|
|
1975
1980
|
$ eas init
|
|
1976
1981
|
```
|
|
1977
1982
|
|
|
1978
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1983
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1979
1984
|
|
|
1980
1985
|
## `eas project:new [PATH]`
|
|
1981
1986
|
|
|
@@ -1999,7 +2004,7 @@ ALIASES
|
|
|
1999
2004
|
$ eas new
|
|
2000
2005
|
```
|
|
2001
2006
|
|
|
2002
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2007
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
2003
2008
|
|
|
2004
2009
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
2005
2010
|
|
|
@@ -2017,7 +2022,7 @@ ALIASES
|
|
|
2017
2022
|
$ eas onboarding
|
|
2018
2023
|
```
|
|
2019
2024
|
|
|
2020
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2025
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
2021
2026
|
|
|
2022
2027
|
## `eas submit`
|
|
2023
2028
|
|
|
@@ -2050,7 +2055,7 @@ ALIASES
|
|
|
2050
2055
|
$ eas build:submit
|
|
2051
2056
|
```
|
|
2052
2057
|
|
|
2053
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2058
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/submit.ts)_
|
|
2054
2059
|
|
|
2055
2060
|
## `eas update`
|
|
2056
2061
|
|
|
@@ -2093,7 +2098,7 @@ DESCRIPTION
|
|
|
2093
2098
|
publish an update group
|
|
2094
2099
|
```
|
|
2095
2100
|
|
|
2096
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2101
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
2097
2102
|
|
|
2098
2103
|
## `eas update:configure`
|
|
2099
2104
|
|
|
@@ -2114,7 +2119,7 @@ DESCRIPTION
|
|
|
2114
2119
|
configure the project to support EAS Update
|
|
2115
2120
|
```
|
|
2116
2121
|
|
|
2117
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2122
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
2118
2123
|
|
|
2119
2124
|
## `eas update:delete GROUPID`
|
|
2120
2125
|
|
|
@@ -2135,7 +2140,7 @@ DESCRIPTION
|
|
|
2135
2140
|
delete all the updates in an update group
|
|
2136
2141
|
```
|
|
2137
2142
|
|
|
2138
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2143
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
2139
2144
|
|
|
2140
2145
|
## `eas update:edit [GROUPID]`
|
|
2141
2146
|
|
|
@@ -2160,7 +2165,7 @@ DESCRIPTION
|
|
|
2160
2165
|
edit all the updates in an update group
|
|
2161
2166
|
```
|
|
2162
2167
|
|
|
2163
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2168
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
2164
2169
|
|
|
2165
2170
|
## `eas update:insights GROUPID`
|
|
2166
2171
|
|
|
@@ -2187,7 +2192,7 @@ DESCRIPTION
|
|
|
2187
2192
|
display launch, crash, unique-user, and size insights for an update group
|
|
2188
2193
|
```
|
|
2189
2194
|
|
|
2190
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2195
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
2191
2196
|
|
|
2192
2197
|
## `eas update:list`
|
|
2193
2198
|
|
|
@@ -2214,7 +2219,7 @@ DESCRIPTION
|
|
|
2214
2219
|
view the recent updates
|
|
2215
2220
|
```
|
|
2216
2221
|
|
|
2217
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2222
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
2218
2223
|
|
|
2219
2224
|
## `eas update:republish`
|
|
2220
2225
|
|
|
@@ -2252,7 +2257,7 @@ DESCRIPTION
|
|
|
2252
2257
|
roll back to an existing update
|
|
2253
2258
|
```
|
|
2254
2259
|
|
|
2255
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2260
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2256
2261
|
|
|
2257
2262
|
## `eas update:revert-update-rollout`
|
|
2258
2263
|
|
|
@@ -2280,7 +2285,7 @@ DESCRIPTION
|
|
|
2280
2285
|
revert a rollout update for a project
|
|
2281
2286
|
```
|
|
2282
2287
|
|
|
2283
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2288
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2284
2289
|
|
|
2285
2290
|
## `eas update:roll-back-to-embedded`
|
|
2286
2291
|
|
|
@@ -2310,7 +2315,7 @@ DESCRIPTION
|
|
|
2310
2315
|
roll back to the embedded update
|
|
2311
2316
|
```
|
|
2312
2317
|
|
|
2313
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2318
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2314
2319
|
|
|
2315
2320
|
## `eas update:rollback`
|
|
2316
2321
|
|
|
@@ -2331,7 +2336,7 @@ DESCRIPTION
|
|
|
2331
2336
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2332
2337
|
```
|
|
2333
2338
|
|
|
2334
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2339
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2335
2340
|
|
|
2336
2341
|
## `eas update:view GROUPID`
|
|
2337
2342
|
|
|
@@ -2355,7 +2360,7 @@ DESCRIPTION
|
|
|
2355
2360
|
update group details
|
|
2356
2361
|
```
|
|
2357
2362
|
|
|
2358
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2363
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2359
2364
|
|
|
2360
2365
|
## `eas upload`
|
|
2361
2366
|
|
|
@@ -2376,7 +2381,7 @@ DESCRIPTION
|
|
|
2376
2381
|
upload a local build and generate a sharable link
|
|
2377
2382
|
```
|
|
2378
2383
|
|
|
2379
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2384
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2380
2385
|
|
|
2381
2386
|
## `eas webhook:create`
|
|
2382
2387
|
|
|
@@ -2398,7 +2403,7 @@ DESCRIPTION
|
|
|
2398
2403
|
create a webhook
|
|
2399
2404
|
```
|
|
2400
2405
|
|
|
2401
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2406
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2402
2407
|
|
|
2403
2408
|
## `eas webhook:delete [ID]`
|
|
2404
2409
|
|
|
@@ -2418,7 +2423,7 @@ DESCRIPTION
|
|
|
2418
2423
|
delete a webhook
|
|
2419
2424
|
```
|
|
2420
2425
|
|
|
2421
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2426
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2422
2427
|
|
|
2423
2428
|
## `eas webhook:list`
|
|
2424
2429
|
|
|
@@ -2437,7 +2442,7 @@ DESCRIPTION
|
|
|
2437
2442
|
list webhooks
|
|
2438
2443
|
```
|
|
2439
2444
|
|
|
2440
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2445
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2441
2446
|
|
|
2442
2447
|
## `eas webhook:update`
|
|
2443
2448
|
|
|
@@ -2460,7 +2465,7 @@ DESCRIPTION
|
|
|
2460
2465
|
update a webhook
|
|
2461
2466
|
```
|
|
2462
2467
|
|
|
2463
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2468
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2464
2469
|
|
|
2465
2470
|
## `eas webhook:view ID`
|
|
2466
2471
|
|
|
@@ -2477,7 +2482,7 @@ DESCRIPTION
|
|
|
2477
2482
|
view a webhook
|
|
2478
2483
|
```
|
|
2479
2484
|
|
|
2480
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2485
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2481
2486
|
|
|
2482
2487
|
## `eas whoami`
|
|
2483
2488
|
|
|
@@ -2598,7 +2603,7 @@ DESCRIPTION
|
|
|
2598
2603
|
to cancel.
|
|
2599
2604
|
```
|
|
2600
2605
|
|
|
2601
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2606
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2602
2607
|
|
|
2603
2608
|
## `eas workflow:create [NAME]`
|
|
2604
2609
|
|
|
@@ -2618,7 +2623,7 @@ DESCRIPTION
|
|
|
2618
2623
|
create a new workflow configuration YAML file
|
|
2619
2624
|
```
|
|
2620
2625
|
|
|
2621
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2626
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2622
2627
|
|
|
2623
2628
|
## `eas workflow:logs [ID]`
|
|
2624
2629
|
|
|
@@ -2642,7 +2647,7 @@ DESCRIPTION
|
|
|
2642
2647
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2643
2648
|
```
|
|
2644
2649
|
|
|
2645
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2650
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2646
2651
|
|
|
2647
2652
|
## `eas workflow:run FILE`
|
|
2648
2653
|
|
|
@@ -2682,7 +2687,7 @@ FLAG DESCRIPTIONS
|
|
|
2682
2687
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2683
2688
|
```
|
|
2684
2689
|
|
|
2685
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2690
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2686
2691
|
|
|
2687
2692
|
## `eas workflow:runs`
|
|
2688
2693
|
|
|
@@ -2704,7 +2709,7 @@ DESCRIPTION
|
|
|
2704
2709
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2705
2710
|
```
|
|
2706
2711
|
|
|
2707
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2712
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2708
2713
|
|
|
2709
2714
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2710
2715
|
|
|
@@ -2732,7 +2737,7 @@ FLAG DESCRIPTIONS
|
|
|
2732
2737
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2733
2738
|
```
|
|
2734
2739
|
|
|
2735
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2740
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2736
2741
|
|
|
2737
2742
|
## `eas workflow:validate PATH`
|
|
2738
2743
|
|
|
@@ -2752,7 +2757,7 @@ DESCRIPTION
|
|
|
2752
2757
|
validate a workflow configuration yaml file
|
|
2753
2758
|
```
|
|
2754
2759
|
|
|
2755
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2760
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2756
2761
|
|
|
2757
2762
|
## `eas workflow:view [ID]`
|
|
2758
2763
|
|
|
@@ -2774,5 +2779,5 @@ DESCRIPTION
|
|
|
2774
2779
|
workflow runs for the current project.
|
|
2775
2780
|
```
|
|
2776
2781
|
|
|
2777
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2782
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.11.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2778
2783
|
<!-- commandsstop -->
|