eas-cli 18.9.0 → 18.10.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 +223 -93
- package/build/build/utils/repository.js +7 -3
- package/build/commandUtils/convex.d.ts +11 -0
- package/build/commandUtils/convex.js +71 -0
- package/build/commands/build/download.js +1 -0
- package/build/commands/build/resign.js +0 -1
- package/build/commands/integrations/convex/connect.d.ts +24 -0
- package/build/commands/integrations/convex/connect.js +258 -0
- package/build/commands/integrations/convex/dashboard.d.ts +9 -0
- package/build/commands/integrations/convex/dashboard.js +42 -0
- package/build/commands/integrations/convex/project/delete.d.ts +13 -0
- package/build/commands/integrations/convex/project/delete.js +65 -0
- package/build/commands/integrations/convex/project.d.ts +9 -0
- package/build/commands/integrations/convex/project.js +28 -0
- package/build/commands/integrations/convex/team/delete.d.ts +17 -0
- package/build/commands/integrations/convex/team/delete.js +93 -0
- package/build/commands/integrations/convex/team/invite.d.ts +19 -0
- package/build/commands/integrations/convex/team/invite.js +108 -0
- package/build/commands/integrations/convex/team.d.ts +9 -0
- package/build/commands/integrations/convex/team.js +35 -0
- package/build/fingerprint/cli.js +1 -0
- package/build/graphql/generated.d.ts +241 -1
- package/build/graphql/mutations/ConvexMutation.d.ts +10 -0
- package/build/graphql/mutations/ConvexMutation.js +89 -0
- package/build/graphql/queries/ConvexQuery.d.ts +6 -0
- package/build/graphql/queries/ConvexQuery.js +49 -0
- package/build/graphql/types/ConvexTeamConnection.d.ts +11 -0
- package/build/graphql/types/ConvexTeamConnection.js +42 -0
- package/oclif.manifest.json +3884 -3333
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -120,6 +120,13 @@ eas --help COMMAND
|
|
|
120
120
|
* [`eas integrations:asc:connect`](#eas-integrationsascconnect)
|
|
121
121
|
* [`eas integrations:asc:disconnect`](#eas-integrationsascdisconnect)
|
|
122
122
|
* [`eas integrations:asc:status`](#eas-integrationsascstatus)
|
|
123
|
+
* [`eas integrations:convex:connect`](#eas-integrationsconvexconnect)
|
|
124
|
+
* [`eas integrations:convex:dashboard`](#eas-integrationsconvexdashboard)
|
|
125
|
+
* [`eas integrations:convex:project`](#eas-integrationsconvexproject)
|
|
126
|
+
* [`eas integrations:convex:project:delete`](#eas-integrationsconvexprojectdelete)
|
|
127
|
+
* [`eas integrations:convex:team`](#eas-integrationsconvexteam)
|
|
128
|
+
* [`eas integrations:convex:team:delete [CONVEX_TEAM]`](#eas-integrationsconvexteamdelete-convex_team)
|
|
129
|
+
* [`eas integrations:convex:team:invite [CONVEX_TEAM]`](#eas-integrationsconvexteaminvite-convex_team)
|
|
123
130
|
* [`eas login`](#eas-login)
|
|
124
131
|
* [`eas logout`](#eas-logout)
|
|
125
132
|
* [`eas metadata:lint`](#eas-metadatalint)
|
|
@@ -183,7 +190,7 @@ ALIASES
|
|
|
183
190
|
$ eas login
|
|
184
191
|
```
|
|
185
192
|
|
|
186
|
-
_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.10.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
187
194
|
|
|
188
195
|
## `eas account:logout`
|
|
189
196
|
|
|
@@ -200,7 +207,7 @@ ALIASES
|
|
|
200
207
|
$ eas logout
|
|
201
208
|
```
|
|
202
209
|
|
|
203
|
-
_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.10.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
204
211
|
|
|
205
212
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
206
213
|
|
|
@@ -222,7 +229,7 @@ DESCRIPTION
|
|
|
222
229
|
view account usage and billing for the current cycle
|
|
223
230
|
```
|
|
224
231
|
|
|
225
|
-
_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.10.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
226
233
|
|
|
227
234
|
## `eas account:view`
|
|
228
235
|
|
|
@@ -239,7 +246,7 @@ ALIASES
|
|
|
239
246
|
$ eas whoami
|
|
240
247
|
```
|
|
241
248
|
|
|
242
|
-
_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.10.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
243
250
|
|
|
244
251
|
## `eas analytics [STATUS]`
|
|
245
252
|
|
|
@@ -253,7 +260,7 @@ DESCRIPTION
|
|
|
253
260
|
display or change analytics settings
|
|
254
261
|
```
|
|
255
262
|
|
|
256
|
-
_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.10.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
257
264
|
|
|
258
265
|
## `eas autocomplete [SHELL]`
|
|
259
266
|
|
|
@@ -305,7 +312,7 @@ DESCRIPTION
|
|
|
305
312
|
create a branch
|
|
306
313
|
```
|
|
307
314
|
|
|
308
|
-
_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.10.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
309
316
|
|
|
310
317
|
## `eas branch:delete [NAME]`
|
|
311
318
|
|
|
@@ -326,7 +333,7 @@ DESCRIPTION
|
|
|
326
333
|
delete a branch
|
|
327
334
|
```
|
|
328
335
|
|
|
329
|
-
_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.10.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
330
337
|
|
|
331
338
|
## `eas branch:list`
|
|
332
339
|
|
|
@@ -346,7 +353,7 @@ DESCRIPTION
|
|
|
346
353
|
list all branches
|
|
347
354
|
```
|
|
348
355
|
|
|
349
|
-
_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.10.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
350
357
|
|
|
351
358
|
## `eas branch:rename`
|
|
352
359
|
|
|
@@ -366,7 +373,7 @@ DESCRIPTION
|
|
|
366
373
|
rename a branch
|
|
367
374
|
```
|
|
368
375
|
|
|
369
|
-
_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.10.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
370
377
|
|
|
371
378
|
## `eas branch:view [NAME]`
|
|
372
379
|
|
|
@@ -389,7 +396,7 @@ DESCRIPTION
|
|
|
389
396
|
view a branch
|
|
390
397
|
```
|
|
391
398
|
|
|
392
|
-
_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.10.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
393
400
|
|
|
394
401
|
## `eas build`
|
|
395
402
|
|
|
@@ -427,7 +434,7 @@ DESCRIPTION
|
|
|
427
434
|
start a build
|
|
428
435
|
```
|
|
429
436
|
|
|
430
|
-
_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.10.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
431
438
|
|
|
432
439
|
## `eas build:cancel [BUILD_ID]`
|
|
433
440
|
|
|
@@ -447,7 +454,7 @@ DESCRIPTION
|
|
|
447
454
|
cancel a build
|
|
448
455
|
```
|
|
449
456
|
|
|
450
|
-
_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.10.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
451
458
|
|
|
452
459
|
## `eas build:configure`
|
|
453
460
|
|
|
@@ -465,7 +472,7 @@ DESCRIPTION
|
|
|
465
472
|
configure the project to support EAS Build
|
|
466
473
|
```
|
|
467
474
|
|
|
468
|
-
_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.10.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
469
476
|
|
|
470
477
|
## `eas build:delete [BUILD_ID]`
|
|
471
478
|
|
|
@@ -485,7 +492,7 @@ DESCRIPTION
|
|
|
485
492
|
delete a build
|
|
486
493
|
```
|
|
487
494
|
|
|
488
|
-
_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.10.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
489
496
|
|
|
490
497
|
## `eas build:dev`
|
|
491
498
|
|
|
@@ -507,7 +514,7 @@ DESCRIPTION
|
|
|
507
514
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
508
515
|
```
|
|
509
516
|
|
|
510
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
517
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
511
518
|
|
|
512
519
|
## `eas build:download`
|
|
513
520
|
|
|
@@ -534,7 +541,7 @@ DESCRIPTION
|
|
|
534
541
|
download a simulator/emulator build by build ID or fingerprint hash
|
|
535
542
|
```
|
|
536
543
|
|
|
537
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
544
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
538
545
|
|
|
539
546
|
## `eas build:inspect`
|
|
540
547
|
|
|
@@ -572,7 +579,7 @@ DESCRIPTION
|
|
|
572
579
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
573
580
|
```
|
|
574
581
|
|
|
575
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
582
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
576
583
|
|
|
577
584
|
## `eas build:list`
|
|
578
585
|
|
|
@@ -612,7 +619,7 @@ DESCRIPTION
|
|
|
612
619
|
list all builds for your project
|
|
613
620
|
```
|
|
614
621
|
|
|
615
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
622
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
616
623
|
|
|
617
624
|
## `eas build:resign`
|
|
618
625
|
|
|
@@ -642,7 +649,7 @@ DESCRIPTION
|
|
|
642
649
|
re-sign a build archive
|
|
643
650
|
```
|
|
644
651
|
|
|
645
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
652
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
646
653
|
|
|
647
654
|
## `eas build:run`
|
|
648
655
|
|
|
@@ -668,7 +675,7 @@ DESCRIPTION
|
|
|
668
675
|
run simulator/emulator builds from eas-cli
|
|
669
676
|
```
|
|
670
677
|
|
|
671
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
678
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
672
679
|
|
|
673
680
|
## `eas build:submit`
|
|
674
681
|
|
|
@@ -720,7 +727,7 @@ DESCRIPTION
|
|
|
720
727
|
get the latest version from EAS servers
|
|
721
728
|
```
|
|
722
729
|
|
|
723
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
730
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
724
731
|
|
|
725
732
|
## `eas build:version:set`
|
|
726
733
|
|
|
@@ -738,7 +745,7 @@ DESCRIPTION
|
|
|
738
745
|
update version of an app
|
|
739
746
|
```
|
|
740
747
|
|
|
741
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
748
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
742
749
|
|
|
743
750
|
## `eas build:version:sync`
|
|
744
751
|
|
|
@@ -756,7 +763,7 @@ DESCRIPTION
|
|
|
756
763
|
update a version in native code with a value stored on EAS servers
|
|
757
764
|
```
|
|
758
765
|
|
|
759
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
766
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
760
767
|
|
|
761
768
|
## `eas build:view [BUILD_ID]`
|
|
762
769
|
|
|
@@ -773,7 +780,7 @@ DESCRIPTION
|
|
|
773
780
|
view a build for your project
|
|
774
781
|
```
|
|
775
782
|
|
|
776
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
783
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
777
784
|
|
|
778
785
|
## `eas channel:create [NAME]`
|
|
779
786
|
|
|
@@ -794,7 +801,7 @@ DESCRIPTION
|
|
|
794
801
|
create a channel
|
|
795
802
|
```
|
|
796
803
|
|
|
797
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
804
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
798
805
|
|
|
799
806
|
## `eas channel:delete [NAME]`
|
|
800
807
|
|
|
@@ -815,7 +822,7 @@ DESCRIPTION
|
|
|
815
822
|
Delete a channel
|
|
816
823
|
```
|
|
817
824
|
|
|
818
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
825
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
819
826
|
|
|
820
827
|
## `eas channel:edit [NAME]`
|
|
821
828
|
|
|
@@ -837,7 +844,7 @@ DESCRIPTION
|
|
|
837
844
|
point a channel at a new branch
|
|
838
845
|
```
|
|
839
846
|
|
|
840
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
847
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
841
848
|
|
|
842
849
|
## `eas channel:insights`
|
|
843
850
|
|
|
@@ -861,7 +868,7 @@ DESCRIPTION
|
|
|
861
868
|
display adoption, crash, and unique-user insights for a channel + runtime version
|
|
862
869
|
```
|
|
863
870
|
|
|
864
|
-
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
871
|
+
_See code: [packages/eas-cli/src/commands/channel/insights.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/insights.ts)_
|
|
865
872
|
|
|
866
873
|
## `eas channel:list`
|
|
867
874
|
|
|
@@ -881,7 +888,7 @@ DESCRIPTION
|
|
|
881
888
|
list all channels
|
|
882
889
|
```
|
|
883
890
|
|
|
884
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
891
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
885
892
|
|
|
886
893
|
## `eas channel:pause [NAME]`
|
|
887
894
|
|
|
@@ -903,7 +910,7 @@ DESCRIPTION
|
|
|
903
910
|
pause a channel to stop it from sending updates
|
|
904
911
|
```
|
|
905
912
|
|
|
906
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
913
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
907
914
|
|
|
908
915
|
## `eas channel:resume [NAME]`
|
|
909
916
|
|
|
@@ -925,7 +932,7 @@ DESCRIPTION
|
|
|
925
932
|
resume a channel to start sending updates
|
|
926
933
|
```
|
|
927
934
|
|
|
928
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
935
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
929
936
|
|
|
930
937
|
## `eas channel:rollout [CHANNEL]`
|
|
931
938
|
|
|
@@ -960,7 +967,7 @@ DESCRIPTION
|
|
|
960
967
|
Roll a new branch out on a channel incrementally.
|
|
961
968
|
```
|
|
962
969
|
|
|
963
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
970
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
964
971
|
|
|
965
972
|
## `eas channel:view [NAME]`
|
|
966
973
|
|
|
@@ -983,7 +990,7 @@ DESCRIPTION
|
|
|
983
990
|
view a channel
|
|
984
991
|
```
|
|
985
992
|
|
|
986
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
993
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
987
994
|
|
|
988
995
|
## `eas config`
|
|
989
996
|
|
|
@@ -1004,7 +1011,7 @@ DESCRIPTION
|
|
|
1004
1011
|
display project configuration (app.json + eas.json)
|
|
1005
1012
|
```
|
|
1006
1013
|
|
|
1007
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1014
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/config.ts)_
|
|
1008
1015
|
|
|
1009
1016
|
## `eas credentials`
|
|
1010
1017
|
|
|
@@ -1021,7 +1028,7 @@ DESCRIPTION
|
|
|
1021
1028
|
manage credentials
|
|
1022
1029
|
```
|
|
1023
1030
|
|
|
1024
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1031
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
1025
1032
|
|
|
1026
1033
|
## `eas credentials:configure-build`
|
|
1027
1034
|
|
|
@@ -1039,7 +1046,7 @@ DESCRIPTION
|
|
|
1039
1046
|
Set up credentials for building your project.
|
|
1040
1047
|
```
|
|
1041
1048
|
|
|
1042
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1049
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1043
1050
|
|
|
1044
1051
|
## `eas deploy [options]`
|
|
1045
1052
|
|
|
@@ -1068,7 +1075,7 @@ ALIASES
|
|
|
1068
1075
|
$ eas worker:deploy
|
|
1069
1076
|
```
|
|
1070
1077
|
|
|
1071
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1078
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1072
1079
|
|
|
1073
1080
|
## `eas deploy:alias`
|
|
1074
1081
|
|
|
@@ -1093,7 +1100,7 @@ ALIASES
|
|
|
1093
1100
|
$ eas deploy:promote
|
|
1094
1101
|
```
|
|
1095
1102
|
|
|
1096
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1103
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1097
1104
|
|
|
1098
1105
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1099
1106
|
|
|
@@ -1114,7 +1121,7 @@ ALIASES
|
|
|
1114
1121
|
$ eas worker:alias:delete
|
|
1115
1122
|
```
|
|
1116
1123
|
|
|
1117
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1124
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1118
1125
|
|
|
1119
1126
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1120
1127
|
|
|
@@ -1135,7 +1142,7 @@ ALIASES
|
|
|
1135
1142
|
$ eas worker:delete
|
|
1136
1143
|
```
|
|
1137
1144
|
|
|
1138
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1145
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1139
1146
|
|
|
1140
1147
|
## `eas deploy:promote`
|
|
1141
1148
|
|
|
@@ -1172,7 +1179,7 @@ DESCRIPTION
|
|
|
1172
1179
|
register new Apple Devices to use for internal distribution
|
|
1173
1180
|
```
|
|
1174
1181
|
|
|
1175
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1182
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1176
1183
|
|
|
1177
1184
|
## `eas device:delete`
|
|
1178
1185
|
|
|
@@ -1192,7 +1199,7 @@ DESCRIPTION
|
|
|
1192
1199
|
remove a registered device from your account
|
|
1193
1200
|
```
|
|
1194
1201
|
|
|
1195
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1202
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1196
1203
|
|
|
1197
1204
|
## `eas device:list`
|
|
1198
1205
|
|
|
@@ -1213,7 +1220,7 @@ DESCRIPTION
|
|
|
1213
1220
|
list all registered devices for your account
|
|
1214
1221
|
```
|
|
1215
1222
|
|
|
1216
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1223
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1217
1224
|
|
|
1218
1225
|
## `eas device:rename`
|
|
1219
1226
|
|
|
@@ -1234,7 +1241,7 @@ DESCRIPTION
|
|
|
1234
1241
|
rename a registered device
|
|
1235
1242
|
```
|
|
1236
1243
|
|
|
1237
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1244
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1238
1245
|
|
|
1239
1246
|
## `eas device:view [UDID]`
|
|
1240
1247
|
|
|
@@ -1248,7 +1255,7 @@ DESCRIPTION
|
|
|
1248
1255
|
view a device for your project
|
|
1249
1256
|
```
|
|
1250
1257
|
|
|
1251
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1258
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1252
1259
|
|
|
1253
1260
|
## `eas diagnostics`
|
|
1254
1261
|
|
|
@@ -1262,7 +1269,7 @@ DESCRIPTION
|
|
|
1262
1269
|
display environment info
|
|
1263
1270
|
```
|
|
1264
1271
|
|
|
1265
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1272
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1266
1273
|
|
|
1267
1274
|
## `eas env:create [ENVIRONMENT]`
|
|
1268
1275
|
|
|
@@ -1294,7 +1301,7 @@ DESCRIPTION
|
|
|
1294
1301
|
create an environment variable for the current project or account
|
|
1295
1302
|
```
|
|
1296
1303
|
|
|
1297
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1304
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1298
1305
|
|
|
1299
1306
|
## `eas env:delete [ENVIRONMENT]`
|
|
1300
1307
|
|
|
@@ -1320,7 +1327,7 @@ DESCRIPTION
|
|
|
1320
1327
|
delete an environment variable for the current project or account
|
|
1321
1328
|
```
|
|
1322
1329
|
|
|
1323
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1330
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1324
1331
|
|
|
1325
1332
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1326
1333
|
|
|
@@ -1342,7 +1349,7 @@ DESCRIPTION
|
|
|
1342
1349
|
execute a command with environment variables from the selected environment
|
|
1343
1350
|
```
|
|
1344
1351
|
|
|
1345
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1352
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1346
1353
|
|
|
1347
1354
|
## `eas env:get [ENVIRONMENT]`
|
|
1348
1355
|
|
|
@@ -1370,7 +1377,7 @@ DESCRIPTION
|
|
|
1370
1377
|
view an environment variable for the current project or account
|
|
1371
1378
|
```
|
|
1372
1379
|
|
|
1373
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1380
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1374
1381
|
|
|
1375
1382
|
## `eas env:list [ENVIRONMENT]`
|
|
1376
1383
|
|
|
@@ -1398,7 +1405,7 @@ DESCRIPTION
|
|
|
1398
1405
|
list environment variables for the current project or account
|
|
1399
1406
|
```
|
|
1400
1407
|
|
|
1401
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1408
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1402
1409
|
|
|
1403
1410
|
## `eas env:pull [ENVIRONMENT]`
|
|
1404
1411
|
|
|
@@ -1421,7 +1428,7 @@ DESCRIPTION
|
|
|
1421
1428
|
pull environment variables for the selected environment to .env file
|
|
1422
1429
|
```
|
|
1423
1430
|
|
|
1424
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1431
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1425
1432
|
|
|
1426
1433
|
## `eas env:push [ENVIRONMENT]`
|
|
1427
1434
|
|
|
@@ -1443,7 +1450,7 @@ DESCRIPTION
|
|
|
1443
1450
|
push environment variables from .env file to the selected environment
|
|
1444
1451
|
```
|
|
1445
1452
|
|
|
1446
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1453
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1447
1454
|
|
|
1448
1455
|
## `eas env:update [ENVIRONMENT]`
|
|
1449
1456
|
|
|
@@ -1477,7 +1484,7 @@ DESCRIPTION
|
|
|
1477
1484
|
update an environment variable on the current project or account
|
|
1478
1485
|
```
|
|
1479
1486
|
|
|
1480
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1487
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1481
1488
|
|
|
1482
1489
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1483
1490
|
|
|
@@ -1521,7 +1528,7 @@ EXAMPLES
|
|
|
1521
1528
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1522
1529
|
```
|
|
1523
1530
|
|
|
1524
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1531
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1525
1532
|
|
|
1526
1533
|
## `eas fingerprint:generate`
|
|
1527
1534
|
|
|
@@ -1552,7 +1559,7 @@ EXAMPLES
|
|
|
1552
1559
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1553
1560
|
```
|
|
1554
1561
|
|
|
1555
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1562
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1556
1563
|
|
|
1557
1564
|
## `eas help [COMMAND]`
|
|
1558
1565
|
|
|
@@ -1631,7 +1638,7 @@ DESCRIPTION
|
|
|
1631
1638
|
connect a project to an App Store Connect app
|
|
1632
1639
|
```
|
|
1633
1640
|
|
|
1634
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1641
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/connect.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/asc/connect.ts)_
|
|
1635
1642
|
|
|
1636
1643
|
## `eas integrations:asc:disconnect`
|
|
1637
1644
|
|
|
@@ -1650,7 +1657,7 @@ DESCRIPTION
|
|
|
1650
1657
|
disconnect the current project from its App Store Connect app
|
|
1651
1658
|
```
|
|
1652
1659
|
|
|
1653
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1660
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/asc/disconnect.ts)_
|
|
1654
1661
|
|
|
1655
1662
|
## `eas integrations:asc:status`
|
|
1656
1663
|
|
|
@@ -1668,7 +1675,130 @@ DESCRIPTION
|
|
|
1668
1675
|
show the App Store Connect app link status for the current project
|
|
1669
1676
|
```
|
|
1670
1677
|
|
|
1671
|
-
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1678
|
+
_See code: [packages/eas-cli/src/commands/integrations/asc/status.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/asc/status.ts)_
|
|
1679
|
+
|
|
1680
|
+
## `eas integrations:convex:connect`
|
|
1681
|
+
|
|
1682
|
+
connect Convex to your Expo project
|
|
1683
|
+
|
|
1684
|
+
```
|
|
1685
|
+
USAGE
|
|
1686
|
+
$ eas integrations:convex:connect [--non-interactive] [--region aws-us-east-1|aws-eu-west-1] [--team-name <value>]
|
|
1687
|
+
[--project-name <value>]
|
|
1688
|
+
|
|
1689
|
+
FLAGS
|
|
1690
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1691
|
+
--project-name=<value> Name for the Convex project (defaults to app slug)
|
|
1692
|
+
--region=<option> Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)
|
|
1693
|
+
<options: aws-us-east-1|aws-eu-west-1>
|
|
1694
|
+
--team-name=<value> Name for the new Convex team (defaults to EAS account name)
|
|
1695
|
+
|
|
1696
|
+
DESCRIPTION
|
|
1697
|
+
connect Convex to your Expo project
|
|
1698
|
+
```
|
|
1699
|
+
|
|
1700
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/connect.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/connect.ts)_
|
|
1701
|
+
|
|
1702
|
+
## `eas integrations:convex:dashboard`
|
|
1703
|
+
|
|
1704
|
+
open the Convex dashboard for the linked Convex project
|
|
1705
|
+
|
|
1706
|
+
```
|
|
1707
|
+
USAGE
|
|
1708
|
+
$ eas integrations:convex:dashboard
|
|
1709
|
+
|
|
1710
|
+
DESCRIPTION
|
|
1711
|
+
open the Convex dashboard for the linked Convex project
|
|
1712
|
+
```
|
|
1713
|
+
|
|
1714
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/dashboard.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/dashboard.ts)_
|
|
1715
|
+
|
|
1716
|
+
## `eas integrations:convex:project`
|
|
1717
|
+
|
|
1718
|
+
display the Convex project linked to the current Expo app
|
|
1719
|
+
|
|
1720
|
+
```
|
|
1721
|
+
USAGE
|
|
1722
|
+
$ eas integrations:convex:project
|
|
1723
|
+
|
|
1724
|
+
DESCRIPTION
|
|
1725
|
+
display the Convex project linked to the current Expo app
|
|
1726
|
+
```
|
|
1727
|
+
|
|
1728
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/project.ts)_
|
|
1729
|
+
|
|
1730
|
+
## `eas integrations:convex:project:delete`
|
|
1731
|
+
|
|
1732
|
+
remove the Convex project link for the current Expo app from EAS servers
|
|
1733
|
+
|
|
1734
|
+
```
|
|
1735
|
+
USAGE
|
|
1736
|
+
$ eas integrations:convex:project:delete [--non-interactive] [-y]
|
|
1737
|
+
|
|
1738
|
+
FLAGS
|
|
1739
|
+
-y, --yes Skip confirmation prompt
|
|
1740
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1741
|
+
|
|
1742
|
+
DESCRIPTION
|
|
1743
|
+
remove the Convex project link for the current Expo app from EAS servers
|
|
1744
|
+
```
|
|
1745
|
+
|
|
1746
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/project/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/project/delete.ts)_
|
|
1747
|
+
|
|
1748
|
+
## `eas integrations:convex:team`
|
|
1749
|
+
|
|
1750
|
+
display Convex teams linked to the current Expo app's owner account
|
|
1751
|
+
|
|
1752
|
+
```
|
|
1753
|
+
USAGE
|
|
1754
|
+
$ eas integrations:convex:team
|
|
1755
|
+
|
|
1756
|
+
DESCRIPTION
|
|
1757
|
+
display Convex teams linked to the current Expo app's owner account
|
|
1758
|
+
```
|
|
1759
|
+
|
|
1760
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/team.ts)_
|
|
1761
|
+
|
|
1762
|
+
## `eas integrations:convex:team:delete [CONVEX_TEAM]`
|
|
1763
|
+
|
|
1764
|
+
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1765
|
+
|
|
1766
|
+
```
|
|
1767
|
+
USAGE
|
|
1768
|
+
$ eas integrations:convex:team:delete [CONVEX_TEAM] [--non-interactive] [-y]
|
|
1769
|
+
|
|
1770
|
+
ARGUMENTS
|
|
1771
|
+
[CONVEX_TEAM] Slug of the Convex team to remove
|
|
1772
|
+
|
|
1773
|
+
FLAGS
|
|
1774
|
+
-y, --yes Skip confirmation prompt
|
|
1775
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1776
|
+
|
|
1777
|
+
DESCRIPTION
|
|
1778
|
+
remove a Convex team link from the current Expo app owner account's EAS servers
|
|
1779
|
+
```
|
|
1780
|
+
|
|
1781
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/team/delete.ts)_
|
|
1782
|
+
|
|
1783
|
+
## `eas integrations:convex:team:invite [CONVEX_TEAM]`
|
|
1784
|
+
|
|
1785
|
+
send a Convex team invitation to your verified email address
|
|
1786
|
+
|
|
1787
|
+
```
|
|
1788
|
+
USAGE
|
|
1789
|
+
$ eas integrations:convex:team:invite [CONVEX_TEAM] [--non-interactive]
|
|
1790
|
+
|
|
1791
|
+
ARGUMENTS
|
|
1792
|
+
[CONVEX_TEAM] Slug of the Convex team to invite yourself to
|
|
1793
|
+
|
|
1794
|
+
FLAGS
|
|
1795
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1796
|
+
|
|
1797
|
+
DESCRIPTION
|
|
1798
|
+
send a Convex team invitation to your verified email address
|
|
1799
|
+
```
|
|
1800
|
+
|
|
1801
|
+
_See code: [packages/eas-cli/src/commands/integrations/convex/team/invite.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/integrations/convex/team/invite.ts)_
|
|
1672
1802
|
|
|
1673
1803
|
## `eas login`
|
|
1674
1804
|
|
|
@@ -1720,7 +1850,7 @@ DESCRIPTION
|
|
|
1720
1850
|
validate the local store configuration
|
|
1721
1851
|
```
|
|
1722
1852
|
|
|
1723
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1853
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1724
1854
|
|
|
1725
1855
|
## `eas metadata:pull`
|
|
1726
1856
|
|
|
@@ -1738,7 +1868,7 @@ DESCRIPTION
|
|
|
1738
1868
|
generate the local store configuration from the app stores
|
|
1739
1869
|
```
|
|
1740
1870
|
|
|
1741
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1871
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1742
1872
|
|
|
1743
1873
|
## `eas metadata:push`
|
|
1744
1874
|
|
|
@@ -1756,7 +1886,7 @@ DESCRIPTION
|
|
|
1756
1886
|
sync the local store configuration to the app stores
|
|
1757
1887
|
```
|
|
1758
1888
|
|
|
1759
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1889
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1760
1890
|
|
|
1761
1891
|
## `eas new [PATH]`
|
|
1762
1892
|
|
|
@@ -1808,7 +1938,7 @@ DESCRIPTION
|
|
|
1808
1938
|
open the project page in a web browser
|
|
1809
1939
|
```
|
|
1810
1940
|
|
|
1811
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1941
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/open.ts)_
|
|
1812
1942
|
|
|
1813
1943
|
## `eas project:info`
|
|
1814
1944
|
|
|
@@ -1822,7 +1952,7 @@ DESCRIPTION
|
|
|
1822
1952
|
information about the current project
|
|
1823
1953
|
```
|
|
1824
1954
|
|
|
1825
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1955
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1826
1956
|
|
|
1827
1957
|
## `eas project:init`
|
|
1828
1958
|
|
|
@@ -1845,7 +1975,7 @@ ALIASES
|
|
|
1845
1975
|
$ eas init
|
|
1846
1976
|
```
|
|
1847
1977
|
|
|
1848
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
1978
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1849
1979
|
|
|
1850
1980
|
## `eas project:new [PATH]`
|
|
1851
1981
|
|
|
@@ -1869,7 +1999,7 @@ ALIASES
|
|
|
1869
1999
|
$ eas new
|
|
1870
2000
|
```
|
|
1871
2001
|
|
|
1872
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2002
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1873
2003
|
|
|
1874
2004
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1875
2005
|
|
|
@@ -1887,7 +2017,7 @@ ALIASES
|
|
|
1887
2017
|
$ eas onboarding
|
|
1888
2018
|
```
|
|
1889
2019
|
|
|
1890
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2020
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1891
2021
|
|
|
1892
2022
|
## `eas submit`
|
|
1893
2023
|
|
|
@@ -1920,7 +2050,7 @@ ALIASES
|
|
|
1920
2050
|
$ eas build:submit
|
|
1921
2051
|
```
|
|
1922
2052
|
|
|
1923
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2053
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1924
2054
|
|
|
1925
2055
|
## `eas update`
|
|
1926
2056
|
|
|
@@ -1963,7 +2093,7 @@ DESCRIPTION
|
|
|
1963
2093
|
publish an update group
|
|
1964
2094
|
```
|
|
1965
2095
|
|
|
1966
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2096
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1967
2097
|
|
|
1968
2098
|
## `eas update:configure`
|
|
1969
2099
|
|
|
@@ -1984,7 +2114,7 @@ DESCRIPTION
|
|
|
1984
2114
|
configure the project to support EAS Update
|
|
1985
2115
|
```
|
|
1986
2116
|
|
|
1987
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2117
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1988
2118
|
|
|
1989
2119
|
## `eas update:delete GROUPID`
|
|
1990
2120
|
|
|
@@ -2005,7 +2135,7 @@ DESCRIPTION
|
|
|
2005
2135
|
delete all the updates in an update group
|
|
2006
2136
|
```
|
|
2007
2137
|
|
|
2008
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2138
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
2009
2139
|
|
|
2010
2140
|
## `eas update:edit [GROUPID]`
|
|
2011
2141
|
|
|
@@ -2030,7 +2160,7 @@ DESCRIPTION
|
|
|
2030
2160
|
edit all the updates in an update group
|
|
2031
2161
|
```
|
|
2032
2162
|
|
|
2033
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2163
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
2034
2164
|
|
|
2035
2165
|
## `eas update:insights GROUPID`
|
|
2036
2166
|
|
|
@@ -2057,7 +2187,7 @@ DESCRIPTION
|
|
|
2057
2187
|
display launch, crash, unique-user, and size insights for an update group
|
|
2058
2188
|
```
|
|
2059
2189
|
|
|
2060
|
-
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2190
|
+
_See code: [packages/eas-cli/src/commands/update/insights.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/insights.ts)_
|
|
2061
2191
|
|
|
2062
2192
|
## `eas update:list`
|
|
2063
2193
|
|
|
@@ -2084,7 +2214,7 @@ DESCRIPTION
|
|
|
2084
2214
|
view the recent updates
|
|
2085
2215
|
```
|
|
2086
2216
|
|
|
2087
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2217
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
2088
2218
|
|
|
2089
2219
|
## `eas update:republish`
|
|
2090
2220
|
|
|
@@ -2122,7 +2252,7 @@ DESCRIPTION
|
|
|
2122
2252
|
roll back to an existing update
|
|
2123
2253
|
```
|
|
2124
2254
|
|
|
2125
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2255
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2126
2256
|
|
|
2127
2257
|
## `eas update:revert-update-rollout`
|
|
2128
2258
|
|
|
@@ -2150,7 +2280,7 @@ DESCRIPTION
|
|
|
2150
2280
|
revert a rollout update for a project
|
|
2151
2281
|
```
|
|
2152
2282
|
|
|
2153
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2283
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2154
2284
|
|
|
2155
2285
|
## `eas update:roll-back-to-embedded`
|
|
2156
2286
|
|
|
@@ -2180,7 +2310,7 @@ DESCRIPTION
|
|
|
2180
2310
|
roll back to the embedded update
|
|
2181
2311
|
```
|
|
2182
2312
|
|
|
2183
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2313
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2184
2314
|
|
|
2185
2315
|
## `eas update:rollback`
|
|
2186
2316
|
|
|
@@ -2201,7 +2331,7 @@ DESCRIPTION
|
|
|
2201
2331
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2202
2332
|
```
|
|
2203
2333
|
|
|
2204
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2334
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2205
2335
|
|
|
2206
2336
|
## `eas update:view GROUPID`
|
|
2207
2337
|
|
|
@@ -2225,7 +2355,7 @@ DESCRIPTION
|
|
|
2225
2355
|
update group details
|
|
2226
2356
|
```
|
|
2227
2357
|
|
|
2228
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2358
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2229
2359
|
|
|
2230
2360
|
## `eas upload`
|
|
2231
2361
|
|
|
@@ -2246,7 +2376,7 @@ DESCRIPTION
|
|
|
2246
2376
|
upload a local build and generate a sharable link
|
|
2247
2377
|
```
|
|
2248
2378
|
|
|
2249
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2379
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2250
2380
|
|
|
2251
2381
|
## `eas webhook:create`
|
|
2252
2382
|
|
|
@@ -2268,7 +2398,7 @@ DESCRIPTION
|
|
|
2268
2398
|
create a webhook
|
|
2269
2399
|
```
|
|
2270
2400
|
|
|
2271
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2401
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2272
2402
|
|
|
2273
2403
|
## `eas webhook:delete [ID]`
|
|
2274
2404
|
|
|
@@ -2288,7 +2418,7 @@ DESCRIPTION
|
|
|
2288
2418
|
delete a webhook
|
|
2289
2419
|
```
|
|
2290
2420
|
|
|
2291
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2421
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2292
2422
|
|
|
2293
2423
|
## `eas webhook:list`
|
|
2294
2424
|
|
|
@@ -2307,7 +2437,7 @@ DESCRIPTION
|
|
|
2307
2437
|
list webhooks
|
|
2308
2438
|
```
|
|
2309
2439
|
|
|
2310
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2440
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2311
2441
|
|
|
2312
2442
|
## `eas webhook:update`
|
|
2313
2443
|
|
|
@@ -2330,7 +2460,7 @@ DESCRIPTION
|
|
|
2330
2460
|
update a webhook
|
|
2331
2461
|
```
|
|
2332
2462
|
|
|
2333
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2463
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2334
2464
|
|
|
2335
2465
|
## `eas webhook:view ID`
|
|
2336
2466
|
|
|
@@ -2347,7 +2477,7 @@ DESCRIPTION
|
|
|
2347
2477
|
view a webhook
|
|
2348
2478
|
```
|
|
2349
2479
|
|
|
2350
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2480
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2351
2481
|
|
|
2352
2482
|
## `eas whoami`
|
|
2353
2483
|
|
|
@@ -2468,7 +2598,7 @@ DESCRIPTION
|
|
|
2468
2598
|
to cancel.
|
|
2469
2599
|
```
|
|
2470
2600
|
|
|
2471
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2601
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2472
2602
|
|
|
2473
2603
|
## `eas workflow:create [NAME]`
|
|
2474
2604
|
|
|
@@ -2488,7 +2618,7 @@ DESCRIPTION
|
|
|
2488
2618
|
create a new workflow configuration YAML file
|
|
2489
2619
|
```
|
|
2490
2620
|
|
|
2491
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2621
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2492
2622
|
|
|
2493
2623
|
## `eas workflow:logs [ID]`
|
|
2494
2624
|
|
|
@@ -2512,7 +2642,7 @@ DESCRIPTION
|
|
|
2512
2642
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2513
2643
|
```
|
|
2514
2644
|
|
|
2515
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2645
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2516
2646
|
|
|
2517
2647
|
## `eas workflow:run FILE`
|
|
2518
2648
|
|
|
@@ -2552,7 +2682,7 @@ FLAG DESCRIPTIONS
|
|
|
2552
2682
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2553
2683
|
```
|
|
2554
2684
|
|
|
2555
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2685
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2556
2686
|
|
|
2557
2687
|
## `eas workflow:runs`
|
|
2558
2688
|
|
|
@@ -2574,7 +2704,7 @@ DESCRIPTION
|
|
|
2574
2704
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2575
2705
|
```
|
|
2576
2706
|
|
|
2577
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2707
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2578
2708
|
|
|
2579
2709
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2580
2710
|
|
|
@@ -2602,7 +2732,7 @@ FLAG DESCRIPTIONS
|
|
|
2602
2732
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2603
2733
|
```
|
|
2604
2734
|
|
|
2605
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2735
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2606
2736
|
|
|
2607
2737
|
## `eas workflow:validate PATH`
|
|
2608
2738
|
|
|
@@ -2622,7 +2752,7 @@ DESCRIPTION
|
|
|
2622
2752
|
validate a workflow configuration yaml file
|
|
2623
2753
|
```
|
|
2624
2754
|
|
|
2625
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2755
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2626
2756
|
|
|
2627
2757
|
## `eas workflow:view [ID]`
|
|
2628
2758
|
|
|
@@ -2644,5 +2774,5 @@ DESCRIPTION
|
|
|
2644
2774
|
workflow runs for the current project.
|
|
2645
2775
|
```
|
|
2646
2776
|
|
|
2647
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.
|
|
2777
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.10.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2648
2778
|
<!-- commandsstop -->
|