eas-cli 16.31.0 → 16.32.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 +110 -87
- package/build/commandUtils/context/contextUtils/createGraphqlClient.d.ts +1 -5
- package/build/commandUtils/usageUtils.d.ts +58 -0
- package/build/commandUtils/usageUtils.js +204 -0
- package/build/commands/account/usage.d.ts +16 -0
- package/build/commands/account/usage.js +326 -0
- package/build/commands/submit/upload-to-asc.d.ts +12 -0
- package/build/commands/submit/upload-to-asc.js +217 -0
- package/build/graphql/generated.d.ts +1063 -39
- package/build/graphql/generated.js +78 -11
- package/build/graphql/queries/AccountQuery.d.ts +15 -0
- package/build/graphql/queries/AccountQuery.js +197 -0
- package/build/graphql/types/Account.d.ts +11 -0
- package/build/graphql/types/Account.js +142 -1
- package/build/submit/ios/AscApiClient.d.ts +247 -0
- package/build/submit/ios/AscApiClient.js +287 -0
- package/build/utils/usage/checkForOverages.js +2 -2
- package/oclif.manifest.json +80 -1
- package/package.json +2 -2
- package/build/graphql/queries/AccountUsageQuery.d.ts +0 -5
- package/build/graphql/queries/AccountUsageQuery.js +0 -40
package/README.md
CHANGED
|
@@ -57,6 +57,7 @@ eas --help COMMAND
|
|
|
57
57
|
<!-- commands -->
|
|
58
58
|
* [`eas account:login`](#eas-accountlogin)
|
|
59
59
|
* [`eas account:logout`](#eas-accountlogout)
|
|
60
|
+
* [`eas account:usage [ACCOUNT_NAME]`](#eas-accountusage-account_name)
|
|
60
61
|
* [`eas account:view`](#eas-accountview)
|
|
61
62
|
* [`eas analytics [STATUS]`](#eas-analytics-status)
|
|
62
63
|
* [`eas autocomplete [SHELL]`](#eas-autocomplete-shell)
|
|
@@ -176,7 +177,7 @@ ALIASES
|
|
|
176
177
|
$ eas login
|
|
177
178
|
```
|
|
178
179
|
|
|
179
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
180
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
180
181
|
|
|
181
182
|
## `eas account:logout`
|
|
182
183
|
|
|
@@ -193,7 +194,29 @@ ALIASES
|
|
|
193
194
|
$ eas logout
|
|
194
195
|
```
|
|
195
196
|
|
|
196
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
197
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
198
|
+
|
|
199
|
+
## `eas account:usage [ACCOUNT_NAME]`
|
|
200
|
+
|
|
201
|
+
view account usage and billing for the current cycle
|
|
202
|
+
|
|
203
|
+
```
|
|
204
|
+
USAGE
|
|
205
|
+
$ eas account:usage [ACCOUNT_NAME] [--json] [--non-interactive]
|
|
206
|
+
|
|
207
|
+
ARGUMENTS
|
|
208
|
+
ACCOUNT_NAME Account name to view usage for. If not provided, the account will be selected interactively (or defaults
|
|
209
|
+
to the only account if there is just one)
|
|
210
|
+
|
|
211
|
+
FLAGS
|
|
212
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
213
|
+
--non-interactive Run the command in non-interactive mode.
|
|
214
|
+
|
|
215
|
+
DESCRIPTION
|
|
216
|
+
view account usage and billing for the current cycle
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
197
220
|
|
|
198
221
|
## `eas account:view`
|
|
199
222
|
|
|
@@ -210,7 +233,7 @@ ALIASES
|
|
|
210
233
|
$ eas whoami
|
|
211
234
|
```
|
|
212
235
|
|
|
213
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
236
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
214
237
|
|
|
215
238
|
## `eas analytics [STATUS]`
|
|
216
239
|
|
|
@@ -224,7 +247,7 @@ DESCRIPTION
|
|
|
224
247
|
display or change analytics settings
|
|
225
248
|
```
|
|
226
249
|
|
|
227
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
250
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
228
251
|
|
|
229
252
|
## `eas autocomplete [SHELL]`
|
|
230
253
|
|
|
@@ -276,7 +299,7 @@ DESCRIPTION
|
|
|
276
299
|
create a branch
|
|
277
300
|
```
|
|
278
301
|
|
|
279
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
302
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
280
303
|
|
|
281
304
|
## `eas branch:delete [NAME]`
|
|
282
305
|
|
|
@@ -297,7 +320,7 @@ DESCRIPTION
|
|
|
297
320
|
delete a branch
|
|
298
321
|
```
|
|
299
322
|
|
|
300
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
323
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
301
324
|
|
|
302
325
|
## `eas branch:list`
|
|
303
326
|
|
|
@@ -317,7 +340,7 @@ DESCRIPTION
|
|
|
317
340
|
list all branches
|
|
318
341
|
```
|
|
319
342
|
|
|
320
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
343
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
321
344
|
|
|
322
345
|
## `eas branch:rename`
|
|
323
346
|
|
|
@@ -337,7 +360,7 @@ DESCRIPTION
|
|
|
337
360
|
rename a branch
|
|
338
361
|
```
|
|
339
362
|
|
|
340
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
363
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
341
364
|
|
|
342
365
|
## `eas branch:view [NAME]`
|
|
343
366
|
|
|
@@ -360,7 +383,7 @@ DESCRIPTION
|
|
|
360
383
|
view a branch
|
|
361
384
|
```
|
|
362
385
|
|
|
363
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
386
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
364
387
|
|
|
365
388
|
## `eas build`
|
|
366
389
|
|
|
@@ -401,7 +424,7 @@ DESCRIPTION
|
|
|
401
424
|
start a build
|
|
402
425
|
```
|
|
403
426
|
|
|
404
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
427
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
405
428
|
|
|
406
429
|
## `eas build:cancel [BUILD_ID]`
|
|
407
430
|
|
|
@@ -420,7 +443,7 @@ DESCRIPTION
|
|
|
420
443
|
cancel a build
|
|
421
444
|
```
|
|
422
445
|
|
|
423
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
446
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
424
447
|
|
|
425
448
|
## `eas build:configure`
|
|
426
449
|
|
|
@@ -437,7 +460,7 @@ DESCRIPTION
|
|
|
437
460
|
configure the project to support EAS Build
|
|
438
461
|
```
|
|
439
462
|
|
|
440
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
463
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
441
464
|
|
|
442
465
|
## `eas build:delete [BUILD_ID]`
|
|
443
466
|
|
|
@@ -456,7 +479,7 @@ DESCRIPTION
|
|
|
456
479
|
delete a build
|
|
457
480
|
```
|
|
458
481
|
|
|
459
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
482
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
460
483
|
|
|
461
484
|
## `eas build:dev`
|
|
462
485
|
|
|
@@ -476,7 +499,7 @@ DESCRIPTION
|
|
|
476
499
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
477
500
|
```
|
|
478
501
|
|
|
479
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
502
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
480
503
|
|
|
481
504
|
## `eas build:download`
|
|
482
505
|
|
|
@@ -497,7 +520,7 @@ DESCRIPTION
|
|
|
497
520
|
download simulator/emulator builds for a given fingerprint hash
|
|
498
521
|
```
|
|
499
522
|
|
|
500
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
523
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
501
524
|
|
|
502
525
|
## `eas build:inspect`
|
|
503
526
|
|
|
@@ -532,7 +555,7 @@ DESCRIPTION
|
|
|
532
555
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
533
556
|
```
|
|
534
557
|
|
|
535
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
558
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
536
559
|
|
|
537
560
|
## `eas build:list`
|
|
538
561
|
|
|
@@ -584,7 +607,7 @@ DESCRIPTION
|
|
|
584
607
|
list all builds for your project
|
|
585
608
|
```
|
|
586
609
|
|
|
587
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
610
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
588
611
|
|
|
589
612
|
## `eas build:resign`
|
|
590
613
|
|
|
@@ -613,7 +636,7 @@ DESCRIPTION
|
|
|
613
636
|
re-sign a build archive
|
|
614
637
|
```
|
|
615
638
|
|
|
616
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
639
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
617
640
|
|
|
618
641
|
## `eas build:run`
|
|
619
642
|
|
|
@@ -639,7 +662,7 @@ DESCRIPTION
|
|
|
639
662
|
run simulator/emulator builds from eas-cli
|
|
640
663
|
```
|
|
641
664
|
|
|
642
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
665
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
643
666
|
|
|
644
667
|
## `eas build:submit`
|
|
645
668
|
|
|
@@ -693,7 +716,7 @@ DESCRIPTION
|
|
|
693
716
|
get the latest version from EAS servers
|
|
694
717
|
```
|
|
695
718
|
|
|
696
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
719
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
697
720
|
|
|
698
721
|
## `eas build:version:set`
|
|
699
722
|
|
|
@@ -712,7 +735,7 @@ DESCRIPTION
|
|
|
712
735
|
update version of an app
|
|
713
736
|
```
|
|
714
737
|
|
|
715
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
738
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
716
739
|
|
|
717
740
|
## `eas build:version:sync`
|
|
718
741
|
|
|
@@ -731,7 +754,7 @@ DESCRIPTION
|
|
|
731
754
|
update a version in native code with a value stored on EAS servers
|
|
732
755
|
```
|
|
733
756
|
|
|
734
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
757
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
735
758
|
|
|
736
759
|
## `eas build:view [BUILD_ID]`
|
|
737
760
|
|
|
@@ -748,7 +771,7 @@ DESCRIPTION
|
|
|
748
771
|
view a build for your project
|
|
749
772
|
```
|
|
750
773
|
|
|
751
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
774
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
752
775
|
|
|
753
776
|
## `eas channel:create [NAME]`
|
|
754
777
|
|
|
@@ -769,7 +792,7 @@ DESCRIPTION
|
|
|
769
792
|
create a channel
|
|
770
793
|
```
|
|
771
794
|
|
|
772
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
795
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
773
796
|
|
|
774
797
|
## `eas channel:delete [NAME]`
|
|
775
798
|
|
|
@@ -790,7 +813,7 @@ DESCRIPTION
|
|
|
790
813
|
Delete a channel
|
|
791
814
|
```
|
|
792
815
|
|
|
793
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
816
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
794
817
|
|
|
795
818
|
## `eas channel:edit [NAME]`
|
|
796
819
|
|
|
@@ -812,7 +835,7 @@ DESCRIPTION
|
|
|
812
835
|
point a channel at a new branch
|
|
813
836
|
```
|
|
814
837
|
|
|
815
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
838
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
816
839
|
|
|
817
840
|
## `eas channel:list`
|
|
818
841
|
|
|
@@ -832,7 +855,7 @@ DESCRIPTION
|
|
|
832
855
|
list all channels
|
|
833
856
|
```
|
|
834
857
|
|
|
835
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
858
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
836
859
|
|
|
837
860
|
## `eas channel:pause [NAME]`
|
|
838
861
|
|
|
@@ -854,7 +877,7 @@ DESCRIPTION
|
|
|
854
877
|
pause a channel to stop it from sending updates
|
|
855
878
|
```
|
|
856
879
|
|
|
857
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
880
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
858
881
|
|
|
859
882
|
## `eas channel:resume [NAME]`
|
|
860
883
|
|
|
@@ -876,7 +899,7 @@ DESCRIPTION
|
|
|
876
899
|
resume a channel to start sending updates
|
|
877
900
|
```
|
|
878
901
|
|
|
879
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
902
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
880
903
|
|
|
881
904
|
## `eas channel:rollout [CHANNEL]`
|
|
882
905
|
|
|
@@ -909,7 +932,7 @@ DESCRIPTION
|
|
|
909
932
|
Roll a new branch out on a channel incrementally.
|
|
910
933
|
```
|
|
911
934
|
|
|
912
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
935
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
913
936
|
|
|
914
937
|
## `eas channel:view [NAME]`
|
|
915
938
|
|
|
@@ -932,7 +955,7 @@ DESCRIPTION
|
|
|
932
955
|
view a channel
|
|
933
956
|
```
|
|
934
957
|
|
|
935
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
958
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
936
959
|
|
|
937
960
|
## `eas config`
|
|
938
961
|
|
|
@@ -953,7 +976,7 @@ DESCRIPTION
|
|
|
953
976
|
display project configuration (app.json + eas.json)
|
|
954
977
|
```
|
|
955
978
|
|
|
956
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
979
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/config.ts)_
|
|
957
980
|
|
|
958
981
|
## `eas credentials`
|
|
959
982
|
|
|
@@ -970,7 +993,7 @@ DESCRIPTION
|
|
|
970
993
|
manage credentials
|
|
971
994
|
```
|
|
972
995
|
|
|
973
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
996
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
974
997
|
|
|
975
998
|
## `eas credentials:configure-build`
|
|
976
999
|
|
|
@@ -988,7 +1011,7 @@ DESCRIPTION
|
|
|
988
1011
|
Set up credentials for building your project.
|
|
989
1012
|
```
|
|
990
1013
|
|
|
991
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1014
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
992
1015
|
|
|
993
1016
|
## `eas deploy [options]`
|
|
994
1017
|
|
|
@@ -1016,7 +1039,7 @@ ALIASES
|
|
|
1016
1039
|
$ eas worker:deploy
|
|
1017
1040
|
```
|
|
1018
1041
|
|
|
1019
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1042
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1020
1043
|
|
|
1021
1044
|
## `eas deploy:alias`
|
|
1022
1045
|
|
|
@@ -1041,7 +1064,7 @@ ALIASES
|
|
|
1041
1064
|
$ eas deploy:promote
|
|
1042
1065
|
```
|
|
1043
1066
|
|
|
1044
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1067
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1045
1068
|
|
|
1046
1069
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1047
1070
|
|
|
@@ -1062,7 +1085,7 @@ ALIASES
|
|
|
1062
1085
|
$ eas worker:alias:delete
|
|
1063
1086
|
```
|
|
1064
1087
|
|
|
1065
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1088
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1066
1089
|
|
|
1067
1090
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1068
1091
|
|
|
@@ -1083,7 +1106,7 @@ ALIASES
|
|
|
1083
1106
|
$ eas worker:delete
|
|
1084
1107
|
```
|
|
1085
1108
|
|
|
1086
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1109
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1087
1110
|
|
|
1088
1111
|
## `eas deploy:promote`
|
|
1089
1112
|
|
|
@@ -1120,7 +1143,7 @@ DESCRIPTION
|
|
|
1120
1143
|
register new Apple Devices to use for internal distribution
|
|
1121
1144
|
```
|
|
1122
1145
|
|
|
1123
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1146
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1124
1147
|
|
|
1125
1148
|
## `eas device:delete`
|
|
1126
1149
|
|
|
@@ -1140,7 +1163,7 @@ DESCRIPTION
|
|
|
1140
1163
|
remove a registered device from your account
|
|
1141
1164
|
```
|
|
1142
1165
|
|
|
1143
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1166
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1144
1167
|
|
|
1145
1168
|
## `eas device:list`
|
|
1146
1169
|
|
|
@@ -1161,7 +1184,7 @@ DESCRIPTION
|
|
|
1161
1184
|
list all registered devices for your account
|
|
1162
1185
|
```
|
|
1163
1186
|
|
|
1164
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1187
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1165
1188
|
|
|
1166
1189
|
## `eas device:rename`
|
|
1167
1190
|
|
|
@@ -1182,7 +1205,7 @@ DESCRIPTION
|
|
|
1182
1205
|
rename a registered device
|
|
1183
1206
|
```
|
|
1184
1207
|
|
|
1185
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1208
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1186
1209
|
|
|
1187
1210
|
## `eas device:view [UDID]`
|
|
1188
1211
|
|
|
@@ -1196,7 +1219,7 @@ DESCRIPTION
|
|
|
1196
1219
|
view a device for your project
|
|
1197
1220
|
```
|
|
1198
1221
|
|
|
1199
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1222
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1200
1223
|
|
|
1201
1224
|
## `eas diagnostics`
|
|
1202
1225
|
|
|
@@ -1210,7 +1233,7 @@ DESCRIPTION
|
|
|
1210
1233
|
display environment info
|
|
1211
1234
|
```
|
|
1212
1235
|
|
|
1213
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1236
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1214
1237
|
|
|
1215
1238
|
## `eas env:create [ENVIRONMENT]`
|
|
1216
1239
|
|
|
@@ -1240,7 +1263,7 @@ DESCRIPTION
|
|
|
1240
1263
|
create an environment variable for the current project or account
|
|
1241
1264
|
```
|
|
1242
1265
|
|
|
1243
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1266
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1244
1267
|
|
|
1245
1268
|
## `eas env:delete [ENVIRONMENT]`
|
|
1246
1269
|
|
|
@@ -1265,7 +1288,7 @@ DESCRIPTION
|
|
|
1265
1288
|
delete an environment variable for the current project or account
|
|
1266
1289
|
```
|
|
1267
1290
|
|
|
1268
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1291
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1269
1292
|
|
|
1270
1293
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1271
1294
|
|
|
@@ -1287,7 +1310,7 @@ DESCRIPTION
|
|
|
1287
1310
|
execute a command with environment variables from the selected environment
|
|
1288
1311
|
```
|
|
1289
1312
|
|
|
1290
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1313
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1291
1314
|
|
|
1292
1315
|
## `eas env:get [ENVIRONMENT]`
|
|
1293
1316
|
|
|
@@ -1312,7 +1335,7 @@ DESCRIPTION
|
|
|
1312
1335
|
view an environment variable for the current project or account
|
|
1313
1336
|
```
|
|
1314
1337
|
|
|
1315
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1338
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1316
1339
|
|
|
1317
1340
|
## `eas env:list [ENVIRONMENT]`
|
|
1318
1341
|
|
|
@@ -1338,7 +1361,7 @@ DESCRIPTION
|
|
|
1338
1361
|
list environment variables for the current project or account
|
|
1339
1362
|
```
|
|
1340
1363
|
|
|
1341
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1364
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1342
1365
|
|
|
1343
1366
|
## `eas env:pull [ENVIRONMENT]`
|
|
1344
1367
|
|
|
@@ -1360,7 +1383,7 @@ DESCRIPTION
|
|
|
1360
1383
|
pull environment variables for the selected environment to .env file
|
|
1361
1384
|
```
|
|
1362
1385
|
|
|
1363
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1386
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1364
1387
|
|
|
1365
1388
|
## `eas env:push [ENVIRONMENT]`
|
|
1366
1389
|
|
|
@@ -1382,7 +1405,7 @@ DESCRIPTION
|
|
|
1382
1405
|
push environment variables from .env file to the selected environment
|
|
1383
1406
|
```
|
|
1384
1407
|
|
|
1385
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1408
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1386
1409
|
|
|
1387
1410
|
## `eas env:update [ENVIRONMENT]`
|
|
1388
1411
|
|
|
@@ -1414,7 +1437,7 @@ DESCRIPTION
|
|
|
1414
1437
|
update an environment variable on the current project or account
|
|
1415
1438
|
```
|
|
1416
1439
|
|
|
1417
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1440
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1418
1441
|
|
|
1419
1442
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1420
1443
|
|
|
@@ -1458,7 +1481,7 @@ EXAMPLES
|
|
|
1458
1481
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1459
1482
|
```
|
|
1460
1483
|
|
|
1461
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1484
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1462
1485
|
|
|
1463
1486
|
## `eas fingerprint:generate`
|
|
1464
1487
|
|
|
@@ -1488,7 +1511,7 @@ EXAMPLES
|
|
|
1488
1511
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1489
1512
|
```
|
|
1490
1513
|
|
|
1491
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1514
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1492
1515
|
|
|
1493
1516
|
## `eas help [COMMAND]`
|
|
1494
1517
|
|
|
@@ -1596,7 +1619,7 @@ DESCRIPTION
|
|
|
1596
1619
|
validate the local store configuration
|
|
1597
1620
|
```
|
|
1598
1621
|
|
|
1599
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1622
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1600
1623
|
|
|
1601
1624
|
## `eas metadata:pull`
|
|
1602
1625
|
|
|
@@ -1613,7 +1636,7 @@ DESCRIPTION
|
|
|
1613
1636
|
generate the local store configuration from the app stores
|
|
1614
1637
|
```
|
|
1615
1638
|
|
|
1616
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1639
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1617
1640
|
|
|
1618
1641
|
## `eas metadata:push`
|
|
1619
1642
|
|
|
@@ -1630,7 +1653,7 @@ DESCRIPTION
|
|
|
1630
1653
|
sync the local store configuration to the app stores
|
|
1631
1654
|
```
|
|
1632
1655
|
|
|
1633
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1656
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1634
1657
|
|
|
1635
1658
|
## `eas new [PATH]`
|
|
1636
1659
|
|
|
@@ -1681,7 +1704,7 @@ DESCRIPTION
|
|
|
1681
1704
|
open the project page in a web browser
|
|
1682
1705
|
```
|
|
1683
1706
|
|
|
1684
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1707
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/open.ts)_
|
|
1685
1708
|
|
|
1686
1709
|
## `eas project:info`
|
|
1687
1710
|
|
|
@@ -1695,7 +1718,7 @@ DESCRIPTION
|
|
|
1695
1718
|
information about the current project
|
|
1696
1719
|
```
|
|
1697
1720
|
|
|
1698
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1721
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1699
1722
|
|
|
1700
1723
|
## `eas project:init`
|
|
1701
1724
|
|
|
@@ -1718,7 +1741,7 @@ ALIASES
|
|
|
1718
1741
|
$ eas init
|
|
1719
1742
|
```
|
|
1720
1743
|
|
|
1721
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1744
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1722
1745
|
|
|
1723
1746
|
## `eas project:new [PATH]`
|
|
1724
1747
|
|
|
@@ -1741,7 +1764,7 @@ ALIASES
|
|
|
1741
1764
|
$ eas new
|
|
1742
1765
|
```
|
|
1743
1766
|
|
|
1744
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1767
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1745
1768
|
|
|
1746
1769
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1747
1770
|
|
|
@@ -1759,7 +1782,7 @@ ALIASES
|
|
|
1759
1782
|
$ eas onboarding
|
|
1760
1783
|
```
|
|
1761
1784
|
|
|
1762
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1785
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1763
1786
|
|
|
1764
1787
|
## `eas submit`
|
|
1765
1788
|
|
|
@@ -1794,7 +1817,7 @@ ALIASES
|
|
|
1794
1817
|
$ eas build:submit
|
|
1795
1818
|
```
|
|
1796
1819
|
|
|
1797
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1820
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1798
1821
|
|
|
1799
1822
|
## `eas update`
|
|
1800
1823
|
|
|
@@ -1834,7 +1857,7 @@ DESCRIPTION
|
|
|
1834
1857
|
publish an update group
|
|
1835
1858
|
```
|
|
1836
1859
|
|
|
1837
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1860
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1838
1861
|
|
|
1839
1862
|
## `eas update:configure`
|
|
1840
1863
|
|
|
@@ -1854,7 +1877,7 @@ DESCRIPTION
|
|
|
1854
1877
|
configure the project to support EAS Update
|
|
1855
1878
|
```
|
|
1856
1879
|
|
|
1857
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1880
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1858
1881
|
|
|
1859
1882
|
## `eas update:delete GROUPID`
|
|
1860
1883
|
|
|
@@ -1875,7 +1898,7 @@ DESCRIPTION
|
|
|
1875
1898
|
delete all the updates in an update group
|
|
1876
1899
|
```
|
|
1877
1900
|
|
|
1878
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1901
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1879
1902
|
|
|
1880
1903
|
## `eas update:edit [GROUPID]`
|
|
1881
1904
|
|
|
@@ -1899,7 +1922,7 @@ DESCRIPTION
|
|
|
1899
1922
|
edit all the updates in an update group
|
|
1900
1923
|
```
|
|
1901
1924
|
|
|
1902
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1925
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1903
1926
|
|
|
1904
1927
|
## `eas update:list`
|
|
1905
1928
|
|
|
@@ -1924,7 +1947,7 @@ DESCRIPTION
|
|
|
1924
1947
|
view the recent updates
|
|
1925
1948
|
```
|
|
1926
1949
|
|
|
1927
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1950
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1928
1951
|
|
|
1929
1952
|
## `eas update:republish`
|
|
1930
1953
|
|
|
@@ -1960,7 +1983,7 @@ DESCRIPTION
|
|
|
1960
1983
|
roll back to an existing update
|
|
1961
1984
|
```
|
|
1962
1985
|
|
|
1963
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1986
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1964
1987
|
|
|
1965
1988
|
## `eas update:revert-update-rollout`
|
|
1966
1989
|
|
|
@@ -1987,7 +2010,7 @@ DESCRIPTION
|
|
|
1987
2010
|
revert a rollout update for a project
|
|
1988
2011
|
```
|
|
1989
2012
|
|
|
1990
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2013
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1991
2014
|
|
|
1992
2015
|
## `eas update:roll-back-to-embedded`
|
|
1993
2016
|
|
|
@@ -2015,7 +2038,7 @@ DESCRIPTION
|
|
|
2015
2038
|
roll back to the embedded update
|
|
2016
2039
|
```
|
|
2017
2040
|
|
|
2018
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2041
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2019
2042
|
|
|
2020
2043
|
## `eas update:rollback`
|
|
2021
2044
|
|
|
@@ -2036,7 +2059,7 @@ DESCRIPTION
|
|
|
2036
2059
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2037
2060
|
```
|
|
2038
2061
|
|
|
2039
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2062
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2040
2063
|
|
|
2041
2064
|
## `eas update:view GROUPID`
|
|
2042
2065
|
|
|
@@ -2056,7 +2079,7 @@ DESCRIPTION
|
|
|
2056
2079
|
update group details
|
|
2057
2080
|
```
|
|
2058
2081
|
|
|
2059
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2082
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2060
2083
|
|
|
2061
2084
|
## `eas upload`
|
|
2062
2085
|
|
|
@@ -2077,7 +2100,7 @@ DESCRIPTION
|
|
|
2077
2100
|
upload a local build and generate a sharable link
|
|
2078
2101
|
```
|
|
2079
2102
|
|
|
2080
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2103
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2081
2104
|
|
|
2082
2105
|
## `eas webhook:create`
|
|
2083
2106
|
|
|
@@ -2098,7 +2121,7 @@ DESCRIPTION
|
|
|
2098
2121
|
create a webhook
|
|
2099
2122
|
```
|
|
2100
2123
|
|
|
2101
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2124
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2102
2125
|
|
|
2103
2126
|
## `eas webhook:delete [ID]`
|
|
2104
2127
|
|
|
@@ -2118,7 +2141,7 @@ DESCRIPTION
|
|
|
2118
2141
|
delete a webhook
|
|
2119
2142
|
```
|
|
2120
2143
|
|
|
2121
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2144
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2122
2145
|
|
|
2123
2146
|
## `eas webhook:list`
|
|
2124
2147
|
|
|
@@ -2136,7 +2159,7 @@ DESCRIPTION
|
|
|
2136
2159
|
list webhooks
|
|
2137
2160
|
```
|
|
2138
2161
|
|
|
2139
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2162
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2140
2163
|
|
|
2141
2164
|
## `eas webhook:update`
|
|
2142
2165
|
|
|
@@ -2158,7 +2181,7 @@ DESCRIPTION
|
|
|
2158
2181
|
update a webhook
|
|
2159
2182
|
```
|
|
2160
2183
|
|
|
2161
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2184
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2162
2185
|
|
|
2163
2186
|
## `eas webhook:view ID`
|
|
2164
2187
|
|
|
@@ -2175,7 +2198,7 @@ DESCRIPTION
|
|
|
2175
2198
|
view a webhook
|
|
2176
2199
|
```
|
|
2177
2200
|
|
|
2178
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2201
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2179
2202
|
|
|
2180
2203
|
## `eas whoami`
|
|
2181
2204
|
|
|
@@ -2295,7 +2318,7 @@ DESCRIPTION
|
|
|
2295
2318
|
to cancel.
|
|
2296
2319
|
```
|
|
2297
2320
|
|
|
2298
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2321
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2299
2322
|
|
|
2300
2323
|
## `eas workflow:create [NAME]`
|
|
2301
2324
|
|
|
@@ -2315,7 +2338,7 @@ DESCRIPTION
|
|
|
2315
2338
|
create a new workflow configuration YAML file
|
|
2316
2339
|
```
|
|
2317
2340
|
|
|
2318
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2341
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2319
2342
|
|
|
2320
2343
|
## `eas workflow:logs [ID]`
|
|
2321
2344
|
|
|
@@ -2339,7 +2362,7 @@ DESCRIPTION
|
|
|
2339
2362
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2340
2363
|
```
|
|
2341
2364
|
|
|
2342
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2365
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2343
2366
|
|
|
2344
2367
|
## `eas workflow:run [FILE]`
|
|
2345
2368
|
|
|
@@ -2379,7 +2402,7 @@ FLAG DESCRIPTIONS
|
|
|
2379
2402
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2380
2403
|
```
|
|
2381
2404
|
|
|
2382
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2405
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2383
2406
|
|
|
2384
2407
|
## `eas workflow:runs`
|
|
2385
2408
|
|
|
@@ -2404,7 +2427,7 @@ DESCRIPTION
|
|
|
2404
2427
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2405
2428
|
```
|
|
2406
2429
|
|
|
2407
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2430
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2408
2431
|
|
|
2409
2432
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2410
2433
|
|
|
@@ -2432,7 +2455,7 @@ FLAG DESCRIPTIONS
|
|
|
2432
2455
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2433
2456
|
```
|
|
2434
2457
|
|
|
2435
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2458
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2436
2459
|
|
|
2437
2460
|
## `eas workflow:validate PATH`
|
|
2438
2461
|
|
|
@@ -2452,7 +2475,7 @@ DESCRIPTION
|
|
|
2452
2475
|
validate a workflow configuration yaml file
|
|
2453
2476
|
```
|
|
2454
2477
|
|
|
2455
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2478
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2456
2479
|
|
|
2457
2480
|
## `eas workflow:view [ID]`
|
|
2458
2481
|
|
|
@@ -2474,5 +2497,5 @@ DESCRIPTION
|
|
|
2474
2497
|
workflow runs for the current project.
|
|
2475
2498
|
```
|
|
2476
2499
|
|
|
2477
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2500
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.32.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2478
2501
|
<!-- commandsstop -->
|