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