eas-cli 16.32.0 → 18.0.3
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 +94 -92
- 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/new/templates/AGENTS.md +0 -1
- package/build/commands/account/login.d.ts +1 -0
- package/build/commands/account/login.js +7 -2
- 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/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/AppVersionQuery.js +1 -5
- 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/expoBrowserAuthFlowLauncher.js +129 -0
- 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 +4 -2
- package/build/worker/mutations.js +2 -8
- package/oclif.manifest.json +8 -48
- package/package.json +61 -63
- package/build/commands/submit/upload-to-asc.d.ts +0 -12
- package/build/commands/submit/upload-to-asc.js +0 -217
- package/build/submit/ios/AscApiClient.d.ts +0 -247
- package/build/submit/ios/AscApiClient.js +0 -287
- package/build/user/expoSsoLauncher.d.ts +0 -3
- package/build/user/expoSsoLauncher.js +0 -98
- package/build/user/fetchSessionSecretAndSsoUser.d.ts +0 -5
- package/build/user/fetchSessionSecretAndSsoUser.js +0 -17
package/README.md
CHANGED
|
@@ -165,10 +165,11 @@ log in with your Expo account
|
|
|
165
165
|
|
|
166
166
|
```
|
|
167
167
|
USAGE
|
|
168
|
-
$ eas account:login [-s]
|
|
168
|
+
$ eas account:login [-s] [-b]
|
|
169
169
|
|
|
170
170
|
FLAGS
|
|
171
|
-
-
|
|
171
|
+
-b, --browser Login with your browser
|
|
172
|
+
-s, --sso Login with SSO
|
|
172
173
|
|
|
173
174
|
DESCRIPTION
|
|
174
175
|
log in with your Expo account
|
|
@@ -177,7 +178,7 @@ ALIASES
|
|
|
177
178
|
$ eas login
|
|
178
179
|
```
|
|
179
180
|
|
|
180
|
-
_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.3/packages/eas-cli/src/commands/account/login.ts)_
|
|
181
182
|
|
|
182
183
|
## `eas account:logout`
|
|
183
184
|
|
|
@@ -194,7 +195,7 @@ ALIASES
|
|
|
194
195
|
$ eas logout
|
|
195
196
|
```
|
|
196
197
|
|
|
197
|
-
_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.3/packages/eas-cli/src/commands/account/logout.ts)_
|
|
198
199
|
|
|
199
200
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
200
201
|
|
|
@@ -216,7 +217,7 @@ DESCRIPTION
|
|
|
216
217
|
view account usage and billing for the current cycle
|
|
217
218
|
```
|
|
218
219
|
|
|
219
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/
|
|
220
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.0.3/packages/eas-cli/src/commands/account/usage.ts)_
|
|
220
221
|
|
|
221
222
|
## `eas account:view`
|
|
222
223
|
|
|
@@ -233,7 +234,7 @@ ALIASES
|
|
|
233
234
|
$ eas whoami
|
|
234
235
|
```
|
|
235
236
|
|
|
236
|
-
_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.3/packages/eas-cli/src/commands/account/view.ts)_
|
|
237
238
|
|
|
238
239
|
## `eas analytics [STATUS]`
|
|
239
240
|
|
|
@@ -247,7 +248,7 @@ DESCRIPTION
|
|
|
247
248
|
display or change analytics settings
|
|
248
249
|
```
|
|
249
250
|
|
|
250
|
-
_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.3/packages/eas-cli/src/commands/analytics.ts)_
|
|
251
252
|
|
|
252
253
|
## `eas autocomplete [SHELL]`
|
|
253
254
|
|
|
@@ -299,7 +300,7 @@ DESCRIPTION
|
|
|
299
300
|
create a branch
|
|
300
301
|
```
|
|
301
302
|
|
|
302
|
-
_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.3/packages/eas-cli/src/commands/branch/create.ts)_
|
|
303
304
|
|
|
304
305
|
## `eas branch:delete [NAME]`
|
|
305
306
|
|
|
@@ -320,7 +321,7 @@ DESCRIPTION
|
|
|
320
321
|
delete a branch
|
|
321
322
|
```
|
|
322
323
|
|
|
323
|
-
_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.3/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
324
325
|
|
|
325
326
|
## `eas branch:list`
|
|
326
327
|
|
|
@@ -340,7 +341,7 @@ DESCRIPTION
|
|
|
340
341
|
list all branches
|
|
341
342
|
```
|
|
342
343
|
|
|
343
|
-
_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.3/packages/eas-cli/src/commands/branch/list.ts)_
|
|
344
345
|
|
|
345
346
|
## `eas branch:rename`
|
|
346
347
|
|
|
@@ -360,7 +361,7 @@ DESCRIPTION
|
|
|
360
361
|
rename a branch
|
|
361
362
|
```
|
|
362
363
|
|
|
363
|
-
_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.3/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
364
365
|
|
|
365
366
|
## `eas branch:view [NAME]`
|
|
366
367
|
|
|
@@ -383,7 +384,7 @@ DESCRIPTION
|
|
|
383
384
|
view a branch
|
|
384
385
|
```
|
|
385
386
|
|
|
386
|
-
_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.3/packages/eas-cli/src/commands/branch/view.ts)_
|
|
387
388
|
|
|
388
389
|
## `eas build`
|
|
389
390
|
|
|
@@ -424,7 +425,7 @@ DESCRIPTION
|
|
|
424
425
|
start a build
|
|
425
426
|
```
|
|
426
427
|
|
|
427
|
-
_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.3/packages/eas-cli/src/commands/build/index.ts)_
|
|
428
429
|
|
|
429
430
|
## `eas build:cancel [BUILD_ID]`
|
|
430
431
|
|
|
@@ -443,7 +444,7 @@ DESCRIPTION
|
|
|
443
444
|
cancel a build
|
|
444
445
|
```
|
|
445
446
|
|
|
446
|
-
_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.3/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
447
448
|
|
|
448
449
|
## `eas build:configure`
|
|
449
450
|
|
|
@@ -460,7 +461,7 @@ DESCRIPTION
|
|
|
460
461
|
configure the project to support EAS Build
|
|
461
462
|
```
|
|
462
463
|
|
|
463
|
-
_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.3/packages/eas-cli/src/commands/build/configure.ts)_
|
|
464
465
|
|
|
465
466
|
## `eas build:delete [BUILD_ID]`
|
|
466
467
|
|
|
@@ -479,7 +480,7 @@ DESCRIPTION
|
|
|
479
480
|
delete a build
|
|
480
481
|
```
|
|
481
482
|
|
|
482
|
-
_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.3/packages/eas-cli/src/commands/build/delete.ts)_
|
|
483
484
|
|
|
484
485
|
## `eas build:dev`
|
|
485
486
|
|
|
@@ -499,7 +500,7 @@ DESCRIPTION
|
|
|
499
500
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
500
501
|
```
|
|
501
502
|
|
|
502
|
-
_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.3/packages/eas-cli/src/commands/build/dev.ts)_
|
|
503
504
|
|
|
504
505
|
## `eas build:download`
|
|
505
506
|
|
|
@@ -520,7 +521,7 @@ DESCRIPTION
|
|
|
520
521
|
download simulator/emulator builds for a given fingerprint hash
|
|
521
522
|
```
|
|
522
523
|
|
|
523
|
-
_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.3/packages/eas-cli/src/commands/build/download.ts)_
|
|
524
525
|
|
|
525
526
|
## `eas build:inspect`
|
|
526
527
|
|
|
@@ -555,7 +556,7 @@ DESCRIPTION
|
|
|
555
556
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
556
557
|
```
|
|
557
558
|
|
|
558
|
-
_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.3/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
559
560
|
|
|
560
561
|
## `eas build:list`
|
|
561
562
|
|
|
@@ -607,7 +608,7 @@ DESCRIPTION
|
|
|
607
608
|
list all builds for your project
|
|
608
609
|
```
|
|
609
610
|
|
|
610
|
-
_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.3/packages/eas-cli/src/commands/build/list.ts)_
|
|
611
612
|
|
|
612
613
|
## `eas build:resign`
|
|
613
614
|
|
|
@@ -636,7 +637,7 @@ DESCRIPTION
|
|
|
636
637
|
re-sign a build archive
|
|
637
638
|
```
|
|
638
639
|
|
|
639
|
-
_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.3/packages/eas-cli/src/commands/build/resign.ts)_
|
|
640
641
|
|
|
641
642
|
## `eas build:run`
|
|
642
643
|
|
|
@@ -662,7 +663,7 @@ DESCRIPTION
|
|
|
662
663
|
run simulator/emulator builds from eas-cli
|
|
663
664
|
```
|
|
664
665
|
|
|
665
|
-
_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.3/packages/eas-cli/src/commands/build/run.ts)_
|
|
666
667
|
|
|
667
668
|
## `eas build:submit`
|
|
668
669
|
|
|
@@ -716,7 +717,7 @@ DESCRIPTION
|
|
|
716
717
|
get the latest version from EAS servers
|
|
717
718
|
```
|
|
718
719
|
|
|
719
|
-
_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.3/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
720
721
|
|
|
721
722
|
## `eas build:version:set`
|
|
722
723
|
|
|
@@ -735,7 +736,7 @@ DESCRIPTION
|
|
|
735
736
|
update version of an app
|
|
736
737
|
```
|
|
737
738
|
|
|
738
|
-
_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.3/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
739
740
|
|
|
740
741
|
## `eas build:version:sync`
|
|
741
742
|
|
|
@@ -754,7 +755,7 @@ DESCRIPTION
|
|
|
754
755
|
update a version in native code with a value stored on EAS servers
|
|
755
756
|
```
|
|
756
757
|
|
|
757
|
-
_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.3/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
758
759
|
|
|
759
760
|
## `eas build:view [BUILD_ID]`
|
|
760
761
|
|
|
@@ -771,7 +772,7 @@ DESCRIPTION
|
|
|
771
772
|
view a build for your project
|
|
772
773
|
```
|
|
773
774
|
|
|
774
|
-
_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.3/packages/eas-cli/src/commands/build/view.ts)_
|
|
775
776
|
|
|
776
777
|
## `eas channel:create [NAME]`
|
|
777
778
|
|
|
@@ -792,7 +793,7 @@ DESCRIPTION
|
|
|
792
793
|
create a channel
|
|
793
794
|
```
|
|
794
795
|
|
|
795
|
-
_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.3/packages/eas-cli/src/commands/channel/create.ts)_
|
|
796
797
|
|
|
797
798
|
## `eas channel:delete [NAME]`
|
|
798
799
|
|
|
@@ -813,7 +814,7 @@ DESCRIPTION
|
|
|
813
814
|
Delete a channel
|
|
814
815
|
```
|
|
815
816
|
|
|
816
|
-
_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.3/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
817
818
|
|
|
818
819
|
## `eas channel:edit [NAME]`
|
|
819
820
|
|
|
@@ -835,7 +836,7 @@ DESCRIPTION
|
|
|
835
836
|
point a channel at a new branch
|
|
836
837
|
```
|
|
837
838
|
|
|
838
|
-
_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.3/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
839
840
|
|
|
840
841
|
## `eas channel:list`
|
|
841
842
|
|
|
@@ -855,7 +856,7 @@ DESCRIPTION
|
|
|
855
856
|
list all channels
|
|
856
857
|
```
|
|
857
858
|
|
|
858
|
-
_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.3/packages/eas-cli/src/commands/channel/list.ts)_
|
|
859
860
|
|
|
860
861
|
## `eas channel:pause [NAME]`
|
|
861
862
|
|
|
@@ -877,7 +878,7 @@ DESCRIPTION
|
|
|
877
878
|
pause a channel to stop it from sending updates
|
|
878
879
|
```
|
|
879
880
|
|
|
880
|
-
_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.3/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
881
882
|
|
|
882
883
|
## `eas channel:resume [NAME]`
|
|
883
884
|
|
|
@@ -899,7 +900,7 @@ DESCRIPTION
|
|
|
899
900
|
resume a channel to start sending updates
|
|
900
901
|
```
|
|
901
902
|
|
|
902
|
-
_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.3/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
903
904
|
|
|
904
905
|
## `eas channel:rollout [CHANNEL]`
|
|
905
906
|
|
|
@@ -932,7 +933,7 @@ DESCRIPTION
|
|
|
932
933
|
Roll a new branch out on a channel incrementally.
|
|
933
934
|
```
|
|
934
935
|
|
|
935
|
-
_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.3/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
936
937
|
|
|
937
938
|
## `eas channel:view [NAME]`
|
|
938
939
|
|
|
@@ -955,7 +956,7 @@ DESCRIPTION
|
|
|
955
956
|
view a channel
|
|
956
957
|
```
|
|
957
958
|
|
|
958
|
-
_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.3/packages/eas-cli/src/commands/channel/view.ts)_
|
|
959
960
|
|
|
960
961
|
## `eas config`
|
|
961
962
|
|
|
@@ -976,7 +977,7 @@ DESCRIPTION
|
|
|
976
977
|
display project configuration (app.json + eas.json)
|
|
977
978
|
```
|
|
978
979
|
|
|
979
|
-
_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.3/packages/eas-cli/src/commands/config.ts)_
|
|
980
981
|
|
|
981
982
|
## `eas credentials`
|
|
982
983
|
|
|
@@ -993,7 +994,7 @@ DESCRIPTION
|
|
|
993
994
|
manage credentials
|
|
994
995
|
```
|
|
995
996
|
|
|
996
|
-
_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.3/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
997
998
|
|
|
998
999
|
## `eas credentials:configure-build`
|
|
999
1000
|
|
|
@@ -1011,7 +1012,7 @@ DESCRIPTION
|
|
|
1011
1012
|
Set up credentials for building your project.
|
|
1012
1013
|
```
|
|
1013
1014
|
|
|
1014
|
-
_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.3/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1015
1016
|
|
|
1016
1017
|
## `eas deploy [options]`
|
|
1017
1018
|
|
|
@@ -1039,7 +1040,7 @@ ALIASES
|
|
|
1039
1040
|
$ eas worker:deploy
|
|
1040
1041
|
```
|
|
1041
1042
|
|
|
1042
|
-
_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.3/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1043
1044
|
|
|
1044
1045
|
## `eas deploy:alias`
|
|
1045
1046
|
|
|
@@ -1064,7 +1065,7 @@ ALIASES
|
|
|
1064
1065
|
$ eas deploy:promote
|
|
1065
1066
|
```
|
|
1066
1067
|
|
|
1067
|
-
_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.3/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1068
1069
|
|
|
1069
1070
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1070
1071
|
|
|
@@ -1085,7 +1086,7 @@ ALIASES
|
|
|
1085
1086
|
$ eas worker:alias:delete
|
|
1086
1087
|
```
|
|
1087
1088
|
|
|
1088
|
-
_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.3/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1089
1090
|
|
|
1090
1091
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1091
1092
|
|
|
@@ -1106,7 +1107,7 @@ ALIASES
|
|
|
1106
1107
|
$ eas worker:delete
|
|
1107
1108
|
```
|
|
1108
1109
|
|
|
1109
|
-
_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.3/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1110
1111
|
|
|
1111
1112
|
## `eas deploy:promote`
|
|
1112
1113
|
|
|
@@ -1143,7 +1144,7 @@ DESCRIPTION
|
|
|
1143
1144
|
register new Apple Devices to use for internal distribution
|
|
1144
1145
|
```
|
|
1145
1146
|
|
|
1146
|
-
_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.3/packages/eas-cli/src/commands/device/create.ts)_
|
|
1147
1148
|
|
|
1148
1149
|
## `eas device:delete`
|
|
1149
1150
|
|
|
@@ -1163,7 +1164,7 @@ DESCRIPTION
|
|
|
1163
1164
|
remove a registered device from your account
|
|
1164
1165
|
```
|
|
1165
1166
|
|
|
1166
|
-
_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.3/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1167
1168
|
|
|
1168
1169
|
## `eas device:list`
|
|
1169
1170
|
|
|
@@ -1184,7 +1185,7 @@ DESCRIPTION
|
|
|
1184
1185
|
list all registered devices for your account
|
|
1185
1186
|
```
|
|
1186
1187
|
|
|
1187
|
-
_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.3/packages/eas-cli/src/commands/device/list.ts)_
|
|
1188
1189
|
|
|
1189
1190
|
## `eas device:rename`
|
|
1190
1191
|
|
|
@@ -1205,7 +1206,7 @@ DESCRIPTION
|
|
|
1205
1206
|
rename a registered device
|
|
1206
1207
|
```
|
|
1207
1208
|
|
|
1208
|
-
_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.3/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1209
1210
|
|
|
1210
1211
|
## `eas device:view [UDID]`
|
|
1211
1212
|
|
|
@@ -1219,7 +1220,7 @@ DESCRIPTION
|
|
|
1219
1220
|
view a device for your project
|
|
1220
1221
|
```
|
|
1221
1222
|
|
|
1222
|
-
_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.3/packages/eas-cli/src/commands/device/view.ts)_
|
|
1223
1224
|
|
|
1224
1225
|
## `eas diagnostics`
|
|
1225
1226
|
|
|
@@ -1233,7 +1234,7 @@ DESCRIPTION
|
|
|
1233
1234
|
display environment info
|
|
1234
1235
|
```
|
|
1235
1236
|
|
|
1236
|
-
_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.3/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1237
1238
|
|
|
1238
1239
|
## `eas env:create [ENVIRONMENT]`
|
|
1239
1240
|
|
|
@@ -1263,7 +1264,7 @@ DESCRIPTION
|
|
|
1263
1264
|
create an environment variable for the current project or account
|
|
1264
1265
|
```
|
|
1265
1266
|
|
|
1266
|
-
_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.3/packages/eas-cli/src/commands/env/create.ts)_
|
|
1267
1268
|
|
|
1268
1269
|
## `eas env:delete [ENVIRONMENT]`
|
|
1269
1270
|
|
|
@@ -1288,7 +1289,7 @@ DESCRIPTION
|
|
|
1288
1289
|
delete an environment variable for the current project or account
|
|
1289
1290
|
```
|
|
1290
1291
|
|
|
1291
|
-
_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.3/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1292
1293
|
|
|
1293
1294
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1294
1295
|
|
|
@@ -1310,7 +1311,7 @@ DESCRIPTION
|
|
|
1310
1311
|
execute a command with environment variables from the selected environment
|
|
1311
1312
|
```
|
|
1312
1313
|
|
|
1313
|
-
_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.3/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1314
1315
|
|
|
1315
1316
|
## `eas env:get [ENVIRONMENT]`
|
|
1316
1317
|
|
|
@@ -1335,7 +1336,7 @@ DESCRIPTION
|
|
|
1335
1336
|
view an environment variable for the current project or account
|
|
1336
1337
|
```
|
|
1337
1338
|
|
|
1338
|
-
_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.3/packages/eas-cli/src/commands/env/get.ts)_
|
|
1339
1340
|
|
|
1340
1341
|
## `eas env:list [ENVIRONMENT]`
|
|
1341
1342
|
|
|
@@ -1361,7 +1362,7 @@ DESCRIPTION
|
|
|
1361
1362
|
list environment variables for the current project or account
|
|
1362
1363
|
```
|
|
1363
1364
|
|
|
1364
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1365
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.0.3/packages/eas-cli/src/commands/env/list.ts)_
|
|
1365
1366
|
|
|
1366
1367
|
## `eas env:pull [ENVIRONMENT]`
|
|
1367
1368
|
|
|
@@ -1383,7 +1384,7 @@ DESCRIPTION
|
|
|
1383
1384
|
pull environment variables for the selected environment to .env file
|
|
1384
1385
|
```
|
|
1385
1386
|
|
|
1386
|
-
_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.3/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1387
1388
|
|
|
1388
1389
|
## `eas env:push [ENVIRONMENT]`
|
|
1389
1390
|
|
|
@@ -1405,7 +1406,7 @@ DESCRIPTION
|
|
|
1405
1406
|
push environment variables from .env file to the selected environment
|
|
1406
1407
|
```
|
|
1407
1408
|
|
|
1408
|
-
_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.3/packages/eas-cli/src/commands/env/push.ts)_
|
|
1409
1410
|
|
|
1410
1411
|
## `eas env:update [ENVIRONMENT]`
|
|
1411
1412
|
|
|
@@ -1437,7 +1438,7 @@ DESCRIPTION
|
|
|
1437
1438
|
update an environment variable on the current project or account
|
|
1438
1439
|
```
|
|
1439
1440
|
|
|
1440
|
-
_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.3/packages/eas-cli/src/commands/env/update.ts)_
|
|
1441
1442
|
|
|
1442
1443
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1443
1444
|
|
|
@@ -1481,7 +1482,7 @@ EXAMPLES
|
|
|
1481
1482
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1482
1483
|
```
|
|
1483
1484
|
|
|
1484
|
-
_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.3/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1485
1486
|
|
|
1486
1487
|
## `eas fingerprint:generate`
|
|
1487
1488
|
|
|
@@ -1511,7 +1512,7 @@ EXAMPLES
|
|
|
1511
1512
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1512
1513
|
```
|
|
1513
1514
|
|
|
1514
|
-
_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.3/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1515
1516
|
|
|
1516
1517
|
## `eas help [COMMAND]`
|
|
1517
1518
|
|
|
@@ -1576,10 +1577,11 @@ log in with your Expo account
|
|
|
1576
1577
|
|
|
1577
1578
|
```
|
|
1578
1579
|
USAGE
|
|
1579
|
-
$ eas login [-s]
|
|
1580
|
+
$ eas login [-s] [-b]
|
|
1580
1581
|
|
|
1581
1582
|
FLAGS
|
|
1582
|
-
-
|
|
1583
|
+
-b, --browser Login with your browser
|
|
1584
|
+
-s, --sso Login with SSO
|
|
1583
1585
|
|
|
1584
1586
|
DESCRIPTION
|
|
1585
1587
|
log in with your Expo account
|
|
@@ -1619,7 +1621,7 @@ DESCRIPTION
|
|
|
1619
1621
|
validate the local store configuration
|
|
1620
1622
|
```
|
|
1621
1623
|
|
|
1622
|
-
_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.3/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1623
1625
|
|
|
1624
1626
|
## `eas metadata:pull`
|
|
1625
1627
|
|
|
@@ -1636,7 +1638,7 @@ DESCRIPTION
|
|
|
1636
1638
|
generate the local store configuration from the app stores
|
|
1637
1639
|
```
|
|
1638
1640
|
|
|
1639
|
-
_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.3/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1640
1642
|
|
|
1641
1643
|
## `eas metadata:push`
|
|
1642
1644
|
|
|
@@ -1653,7 +1655,7 @@ DESCRIPTION
|
|
|
1653
1655
|
sync the local store configuration to the app stores
|
|
1654
1656
|
```
|
|
1655
1657
|
|
|
1656
|
-
_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.3/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1657
1659
|
|
|
1658
1660
|
## `eas new [PATH]`
|
|
1659
1661
|
|
|
@@ -1704,7 +1706,7 @@ DESCRIPTION
|
|
|
1704
1706
|
open the project page in a web browser
|
|
1705
1707
|
```
|
|
1706
1708
|
|
|
1707
|
-
_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.3/packages/eas-cli/src/commands/open.ts)_
|
|
1708
1710
|
|
|
1709
1711
|
## `eas project:info`
|
|
1710
1712
|
|
|
@@ -1718,7 +1720,7 @@ DESCRIPTION
|
|
|
1718
1720
|
information about the current project
|
|
1719
1721
|
```
|
|
1720
1722
|
|
|
1721
|
-
_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.3/packages/eas-cli/src/commands/project/info.ts)_
|
|
1722
1724
|
|
|
1723
1725
|
## `eas project:init`
|
|
1724
1726
|
|
|
@@ -1741,7 +1743,7 @@ ALIASES
|
|
|
1741
1743
|
$ eas init
|
|
1742
1744
|
```
|
|
1743
1745
|
|
|
1744
|
-
_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.3/packages/eas-cli/src/commands/project/init.ts)_
|
|
1745
1747
|
|
|
1746
1748
|
## `eas project:new [PATH]`
|
|
1747
1749
|
|
|
@@ -1764,7 +1766,7 @@ ALIASES
|
|
|
1764
1766
|
$ eas new
|
|
1765
1767
|
```
|
|
1766
1768
|
|
|
1767
|
-
_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.3/packages/eas-cli/src/commands/project/new.ts)_
|
|
1768
1770
|
|
|
1769
1771
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1770
1772
|
|
|
@@ -1782,7 +1784,7 @@ ALIASES
|
|
|
1782
1784
|
$ eas onboarding
|
|
1783
1785
|
```
|
|
1784
1786
|
|
|
1785
|
-
_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.3/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1786
1788
|
|
|
1787
1789
|
## `eas submit`
|
|
1788
1790
|
|
|
@@ -1817,7 +1819,7 @@ ALIASES
|
|
|
1817
1819
|
$ eas build:submit
|
|
1818
1820
|
```
|
|
1819
1821
|
|
|
1820
|
-
_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.3/packages/eas-cli/src/commands/submit.ts)_
|
|
1821
1823
|
|
|
1822
1824
|
## `eas update`
|
|
1823
1825
|
|
|
@@ -1857,7 +1859,7 @@ DESCRIPTION
|
|
|
1857
1859
|
publish an update group
|
|
1858
1860
|
```
|
|
1859
1861
|
|
|
1860
|
-
_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.3/packages/eas-cli/src/commands/update/index.ts)_
|
|
1861
1863
|
|
|
1862
1864
|
## `eas update:configure`
|
|
1863
1865
|
|
|
@@ -1877,7 +1879,7 @@ DESCRIPTION
|
|
|
1877
1879
|
configure the project to support EAS Update
|
|
1878
1880
|
```
|
|
1879
1881
|
|
|
1880
|
-
_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.3/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1881
1883
|
|
|
1882
1884
|
## `eas update:delete GROUPID`
|
|
1883
1885
|
|
|
@@ -1898,7 +1900,7 @@ DESCRIPTION
|
|
|
1898
1900
|
delete all the updates in an update group
|
|
1899
1901
|
```
|
|
1900
1902
|
|
|
1901
|
-
_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.3/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1902
1904
|
|
|
1903
1905
|
## `eas update:edit [GROUPID]`
|
|
1904
1906
|
|
|
@@ -1922,7 +1924,7 @@ DESCRIPTION
|
|
|
1922
1924
|
edit all the updates in an update group
|
|
1923
1925
|
```
|
|
1924
1926
|
|
|
1925
|
-
_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.3/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1926
1928
|
|
|
1927
1929
|
## `eas update:list`
|
|
1928
1930
|
|
|
@@ -1947,7 +1949,7 @@ DESCRIPTION
|
|
|
1947
1949
|
view the recent updates
|
|
1948
1950
|
```
|
|
1949
1951
|
|
|
1950
|
-
_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.3/packages/eas-cli/src/commands/update/list.ts)_
|
|
1951
1953
|
|
|
1952
1954
|
## `eas update:republish`
|
|
1953
1955
|
|
|
@@ -1983,7 +1985,7 @@ DESCRIPTION
|
|
|
1983
1985
|
roll back to an existing update
|
|
1984
1986
|
```
|
|
1985
1987
|
|
|
1986
|
-
_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.3/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1987
1989
|
|
|
1988
1990
|
## `eas update:revert-update-rollout`
|
|
1989
1991
|
|
|
@@ -2010,7 +2012,7 @@ DESCRIPTION
|
|
|
2010
2012
|
revert a rollout update for a project
|
|
2011
2013
|
```
|
|
2012
2014
|
|
|
2013
|
-
_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.3/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2014
2016
|
|
|
2015
2017
|
## `eas update:roll-back-to-embedded`
|
|
2016
2018
|
|
|
@@ -2038,7 +2040,7 @@ DESCRIPTION
|
|
|
2038
2040
|
roll back to the embedded update
|
|
2039
2041
|
```
|
|
2040
2042
|
|
|
2041
|
-
_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.3/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2042
2044
|
|
|
2043
2045
|
## `eas update:rollback`
|
|
2044
2046
|
|
|
@@ -2059,7 +2061,7 @@ DESCRIPTION
|
|
|
2059
2061
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2060
2062
|
```
|
|
2061
2063
|
|
|
2062
|
-
_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.3/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2063
2065
|
|
|
2064
2066
|
## `eas update:view GROUPID`
|
|
2065
2067
|
|
|
@@ -2079,7 +2081,7 @@ DESCRIPTION
|
|
|
2079
2081
|
update group details
|
|
2080
2082
|
```
|
|
2081
2083
|
|
|
2082
|
-
_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.3/packages/eas-cli/src/commands/update/view.ts)_
|
|
2083
2085
|
|
|
2084
2086
|
## `eas upload`
|
|
2085
2087
|
|
|
@@ -2100,7 +2102,7 @@ DESCRIPTION
|
|
|
2100
2102
|
upload a local build and generate a sharable link
|
|
2101
2103
|
```
|
|
2102
2104
|
|
|
2103
|
-
_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.3/packages/eas-cli/src/commands/upload.ts)_
|
|
2104
2106
|
|
|
2105
2107
|
## `eas webhook:create`
|
|
2106
2108
|
|
|
@@ -2121,7 +2123,7 @@ DESCRIPTION
|
|
|
2121
2123
|
create a webhook
|
|
2122
2124
|
```
|
|
2123
2125
|
|
|
2124
|
-
_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.3/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2125
2127
|
|
|
2126
2128
|
## `eas webhook:delete [ID]`
|
|
2127
2129
|
|
|
@@ -2141,7 +2143,7 @@ DESCRIPTION
|
|
|
2141
2143
|
delete a webhook
|
|
2142
2144
|
```
|
|
2143
2145
|
|
|
2144
|
-
_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.3/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2145
2147
|
|
|
2146
2148
|
## `eas webhook:list`
|
|
2147
2149
|
|
|
@@ -2159,7 +2161,7 @@ DESCRIPTION
|
|
|
2159
2161
|
list webhooks
|
|
2160
2162
|
```
|
|
2161
2163
|
|
|
2162
|
-
_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.3/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2163
2165
|
|
|
2164
2166
|
## `eas webhook:update`
|
|
2165
2167
|
|
|
@@ -2181,7 +2183,7 @@ DESCRIPTION
|
|
|
2181
2183
|
update a webhook
|
|
2182
2184
|
```
|
|
2183
2185
|
|
|
2184
|
-
_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.3/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2185
2187
|
|
|
2186
2188
|
## `eas webhook:view ID`
|
|
2187
2189
|
|
|
@@ -2198,7 +2200,7 @@ DESCRIPTION
|
|
|
2198
2200
|
view a webhook
|
|
2199
2201
|
```
|
|
2200
2202
|
|
|
2201
|
-
_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.3/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2202
2204
|
|
|
2203
2205
|
## `eas whoami`
|
|
2204
2206
|
|
|
@@ -2318,7 +2320,7 @@ DESCRIPTION
|
|
|
2318
2320
|
to cancel.
|
|
2319
2321
|
```
|
|
2320
2322
|
|
|
2321
|
-
_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.3/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2322
2324
|
|
|
2323
2325
|
## `eas workflow:create [NAME]`
|
|
2324
2326
|
|
|
@@ -2338,7 +2340,7 @@ DESCRIPTION
|
|
|
2338
2340
|
create a new workflow configuration YAML file
|
|
2339
2341
|
```
|
|
2340
2342
|
|
|
2341
|
-
_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.3/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2342
2344
|
|
|
2343
2345
|
## `eas workflow:logs [ID]`
|
|
2344
2346
|
|
|
@@ -2362,7 +2364,7 @@ DESCRIPTION
|
|
|
2362
2364
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2363
2365
|
```
|
|
2364
2366
|
|
|
2365
|
-
_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.3/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2366
2368
|
|
|
2367
2369
|
## `eas workflow:run [FILE]`
|
|
2368
2370
|
|
|
@@ -2402,7 +2404,7 @@ FLAG DESCRIPTIONS
|
|
|
2402
2404
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2403
2405
|
```
|
|
2404
2406
|
|
|
2405
|
-
_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.3/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2406
2408
|
|
|
2407
2409
|
## `eas workflow:runs`
|
|
2408
2410
|
|
|
@@ -2427,7 +2429,7 @@ DESCRIPTION
|
|
|
2427
2429
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2428
2430
|
```
|
|
2429
2431
|
|
|
2430
|
-
_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.3/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2431
2433
|
|
|
2432
2434
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2433
2435
|
|
|
@@ -2455,7 +2457,7 @@ FLAG DESCRIPTIONS
|
|
|
2455
2457
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2456
2458
|
```
|
|
2457
2459
|
|
|
2458
|
-
_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.3/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2459
2461
|
|
|
2460
2462
|
## `eas workflow:validate PATH`
|
|
2461
2463
|
|
|
@@ -2475,7 +2477,7 @@ DESCRIPTION
|
|
|
2475
2477
|
validate a workflow configuration yaml file
|
|
2476
2478
|
```
|
|
2477
2479
|
|
|
2478
|
-
_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.3/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2479
2481
|
|
|
2480
2482
|
## `eas workflow:view [ID]`
|
|
2481
2483
|
|
|
@@ -2497,5 +2499,5 @@ DESCRIPTION
|
|
|
2497
2499
|
workflow runs for the current project.
|
|
2498
2500
|
```
|
|
2499
2501
|
|
|
2500
|
-
_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.3/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2501
2503
|
<!-- commandsstop -->
|