eas-cli 14.7.1 → 15.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 +88 -81
- package/build/build/runBuildAndSubmit.d.ts +2 -0
- package/build/build/runBuildAndSubmit.js +11 -2
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +30 -16
- package/build/commands/build/internal.js +7 -3
- package/build/commands/build/run.js +1 -6
- package/build/commands/fingerprint/compare.d.ts +2 -8
- package/build/commands/fingerprint/compare.js +218 -66
- package/build/commands/project/onboarding.js +4 -1
- package/build/commands/submit/internal.js +7 -3
- package/build/graphql/generated.d.ts +141 -0
- package/build/graphql/queries/UpdateQuery.d.ts +2 -1
- package/build/graphql/queries/UpdateQuery.js +16 -0
- package/build/graphql/types/Build.js +5 -0
- package/build/graphql/types/Update.js +1 -0
- package/build/run/run.d.ts +1 -0
- package/build/run/run.js +8 -1
- package/build/vcs/clients/git.d.ts +6 -2
- package/build/vcs/clients/git.js +87 -27
- package/build/vcs/index.js +10 -10
- package/build/vcs/local.d.ts +1 -0
- package/build/vcs/local.js +3 -3
- package/oclif.manifest.json +17 -5
- package/package.json +3 -3
- package/build/vcs/clients/gitNoCommit.d.ts +0 -8
- package/build/vcs/clients/gitNoCommit.js +0 -42
package/README.md
CHANGED
|
@@ -160,7 +160,7 @@ ALIASES
|
|
|
160
160
|
$ eas login
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/
|
|
163
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
164
164
|
|
|
165
165
|
## `eas account:logout`
|
|
166
166
|
|
|
@@ -177,7 +177,7 @@ ALIASES
|
|
|
177
177
|
$ eas logout
|
|
178
178
|
```
|
|
179
179
|
|
|
180
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/
|
|
180
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
181
181
|
|
|
182
182
|
## `eas account:view`
|
|
183
183
|
|
|
@@ -194,7 +194,7 @@ ALIASES
|
|
|
194
194
|
$ eas whoami
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/
|
|
197
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
198
198
|
|
|
199
199
|
## `eas analytics [STATUS]`
|
|
200
200
|
|
|
@@ -208,7 +208,7 @@ DESCRIPTION
|
|
|
208
208
|
display or change analytics settings
|
|
209
209
|
```
|
|
210
210
|
|
|
211
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/
|
|
211
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
212
212
|
|
|
213
213
|
## `eas autocomplete [SHELL]`
|
|
214
214
|
|
|
@@ -260,7 +260,7 @@ DESCRIPTION
|
|
|
260
260
|
create a branch
|
|
261
261
|
```
|
|
262
262
|
|
|
263
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/
|
|
263
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
264
264
|
|
|
265
265
|
## `eas branch:delete [NAME]`
|
|
266
266
|
|
|
@@ -281,7 +281,7 @@ DESCRIPTION
|
|
|
281
281
|
delete a branch
|
|
282
282
|
```
|
|
283
283
|
|
|
284
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
284
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
285
285
|
|
|
286
286
|
## `eas branch:list`
|
|
287
287
|
|
|
@@ -301,7 +301,7 @@ DESCRIPTION
|
|
|
301
301
|
list all branches
|
|
302
302
|
```
|
|
303
303
|
|
|
304
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/
|
|
304
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
305
305
|
|
|
306
306
|
## `eas branch:rename`
|
|
307
307
|
|
|
@@ -321,7 +321,7 @@ DESCRIPTION
|
|
|
321
321
|
rename a branch
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
325
325
|
|
|
326
326
|
## `eas branch:view [NAME]`
|
|
327
327
|
|
|
@@ -344,7 +344,7 @@ DESCRIPTION
|
|
|
344
344
|
view a branch
|
|
345
345
|
```
|
|
346
346
|
|
|
347
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/
|
|
347
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
348
348
|
|
|
349
349
|
## `eas build`
|
|
350
350
|
|
|
@@ -381,7 +381,7 @@ DESCRIPTION
|
|
|
381
381
|
start a build
|
|
382
382
|
```
|
|
383
383
|
|
|
384
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/
|
|
384
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
385
385
|
|
|
386
386
|
## `eas build:cancel [BUILD_ID]`
|
|
387
387
|
|
|
@@ -400,7 +400,7 @@ DESCRIPTION
|
|
|
400
400
|
cancel a build
|
|
401
401
|
```
|
|
402
402
|
|
|
403
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
403
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
404
404
|
|
|
405
405
|
## `eas build:configure`
|
|
406
406
|
|
|
@@ -417,7 +417,7 @@ DESCRIPTION
|
|
|
417
417
|
configure the project to support EAS Build
|
|
418
418
|
```
|
|
419
419
|
|
|
420
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
420
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
421
421
|
|
|
422
422
|
## `eas build:delete [BUILD_ID]`
|
|
423
423
|
|
|
@@ -436,7 +436,7 @@ DESCRIPTION
|
|
|
436
436
|
delete a build
|
|
437
437
|
```
|
|
438
438
|
|
|
439
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
439
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/delete.ts)_
|
|
440
440
|
|
|
441
441
|
## `eas build:dev`
|
|
442
442
|
|
|
@@ -456,7 +456,7 @@ DESCRIPTION
|
|
|
456
456
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
457
457
|
```
|
|
458
458
|
|
|
459
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/
|
|
459
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/dev.ts)_
|
|
460
460
|
|
|
461
461
|
## `eas build:inspect`
|
|
462
462
|
|
|
@@ -491,7 +491,7 @@ DESCRIPTION
|
|
|
491
491
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
492
492
|
```
|
|
493
493
|
|
|
494
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/
|
|
494
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
495
495
|
|
|
496
496
|
## `eas build:list`
|
|
497
497
|
|
|
@@ -543,7 +543,7 @@ DESCRIPTION
|
|
|
543
543
|
list all builds for your project
|
|
544
544
|
```
|
|
545
545
|
|
|
546
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/
|
|
546
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
547
547
|
|
|
548
548
|
## `eas build:resign`
|
|
549
549
|
|
|
@@ -572,7 +572,7 @@ DESCRIPTION
|
|
|
572
572
|
re-sign a build archive
|
|
573
573
|
```
|
|
574
574
|
|
|
575
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/
|
|
575
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
576
576
|
|
|
577
577
|
## `eas build:run`
|
|
578
578
|
|
|
@@ -598,7 +598,7 @@ DESCRIPTION
|
|
|
598
598
|
run simulator/emulator builds from eas-cli
|
|
599
599
|
```
|
|
600
600
|
|
|
601
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/
|
|
601
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
602
602
|
|
|
603
603
|
## `eas build:submit`
|
|
604
604
|
|
|
@@ -648,7 +648,7 @@ DESCRIPTION
|
|
|
648
648
|
get the latest version from EAS servers
|
|
649
649
|
```
|
|
650
650
|
|
|
651
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/
|
|
651
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
652
652
|
|
|
653
653
|
## `eas build:version:set`
|
|
654
654
|
|
|
@@ -667,7 +667,7 @@ DESCRIPTION
|
|
|
667
667
|
update version of an app
|
|
668
668
|
```
|
|
669
669
|
|
|
670
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/
|
|
670
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
671
671
|
|
|
672
672
|
## `eas build:version:sync`
|
|
673
673
|
|
|
@@ -686,7 +686,7 @@ DESCRIPTION
|
|
|
686
686
|
update a version in native code with a value stored on EAS servers
|
|
687
687
|
```
|
|
688
688
|
|
|
689
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/
|
|
689
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
690
690
|
|
|
691
691
|
## `eas build:view [BUILD_ID]`
|
|
692
692
|
|
|
@@ -703,7 +703,7 @@ DESCRIPTION
|
|
|
703
703
|
view a build for your project
|
|
704
704
|
```
|
|
705
705
|
|
|
706
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/
|
|
706
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
707
707
|
|
|
708
708
|
## `eas channel:create [NAME]`
|
|
709
709
|
|
|
@@ -724,7 +724,7 @@ DESCRIPTION
|
|
|
724
724
|
create a channel
|
|
725
725
|
```
|
|
726
726
|
|
|
727
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/
|
|
727
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
728
728
|
|
|
729
729
|
## `eas channel:edit [NAME]`
|
|
730
730
|
|
|
@@ -746,7 +746,7 @@ DESCRIPTION
|
|
|
746
746
|
point a channel at a new branch
|
|
747
747
|
```
|
|
748
748
|
|
|
749
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
749
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
750
750
|
|
|
751
751
|
## `eas channel:list`
|
|
752
752
|
|
|
@@ -766,7 +766,7 @@ DESCRIPTION
|
|
|
766
766
|
list all channels
|
|
767
767
|
```
|
|
768
768
|
|
|
769
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/
|
|
769
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
770
770
|
|
|
771
771
|
## `eas channel:pause [NAME]`
|
|
772
772
|
|
|
@@ -788,7 +788,7 @@ DESCRIPTION
|
|
|
788
788
|
pause a channel to stop it from sending updates
|
|
789
789
|
```
|
|
790
790
|
|
|
791
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/
|
|
791
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
792
792
|
|
|
793
793
|
## `eas channel:resume [NAME]`
|
|
794
794
|
|
|
@@ -810,7 +810,7 @@ DESCRIPTION
|
|
|
810
810
|
resume a channel to start sending updates
|
|
811
811
|
```
|
|
812
812
|
|
|
813
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/
|
|
813
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
814
814
|
|
|
815
815
|
## `eas channel:rollout [CHANNEL]`
|
|
816
816
|
|
|
@@ -843,7 +843,7 @@ DESCRIPTION
|
|
|
843
843
|
Roll a new branch out on a channel incrementally.
|
|
844
844
|
```
|
|
845
845
|
|
|
846
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/
|
|
846
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
847
847
|
|
|
848
848
|
## `eas channel:view [NAME]`
|
|
849
849
|
|
|
@@ -866,7 +866,7 @@ DESCRIPTION
|
|
|
866
866
|
view a channel
|
|
867
867
|
```
|
|
868
868
|
|
|
869
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/
|
|
869
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
870
870
|
|
|
871
871
|
## `eas config`
|
|
872
872
|
|
|
@@ -887,7 +887,7 @@ DESCRIPTION
|
|
|
887
887
|
display project configuration (app.json + eas.json)
|
|
888
888
|
```
|
|
889
889
|
|
|
890
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/
|
|
890
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/config.ts)_
|
|
891
891
|
|
|
892
892
|
## `eas credentials`
|
|
893
893
|
|
|
@@ -904,7 +904,7 @@ DESCRIPTION
|
|
|
904
904
|
manage credentials
|
|
905
905
|
```
|
|
906
906
|
|
|
907
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/
|
|
907
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
908
908
|
|
|
909
909
|
## `eas credentials:configure-build`
|
|
910
910
|
|
|
@@ -922,7 +922,7 @@ DESCRIPTION
|
|
|
922
922
|
Set up credentials for building your project.
|
|
923
923
|
```
|
|
924
924
|
|
|
925
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/
|
|
925
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
926
926
|
|
|
927
927
|
## `eas deploy [2m[options][22m`
|
|
928
928
|
|
|
@@ -950,7 +950,7 @@ ALIASES
|
|
|
950
950
|
$ eas worker:deploy
|
|
951
951
|
```
|
|
952
952
|
|
|
953
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/
|
|
953
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
954
954
|
|
|
955
955
|
## `eas deploy:alias`
|
|
956
956
|
|
|
@@ -975,7 +975,7 @@ ALIASES
|
|
|
975
975
|
$ eas deploy:promote
|
|
976
976
|
```
|
|
977
977
|
|
|
978
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/
|
|
978
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
979
979
|
|
|
980
980
|
## `eas deploy:promote`
|
|
981
981
|
|
|
@@ -1012,7 +1012,7 @@ DESCRIPTION
|
|
|
1012
1012
|
register new Apple Devices to use for internal distribution
|
|
1013
1013
|
```
|
|
1014
1014
|
|
|
1015
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1015
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
1016
1016
|
|
|
1017
1017
|
## `eas device:delete`
|
|
1018
1018
|
|
|
@@ -1032,7 +1032,7 @@ DESCRIPTION
|
|
|
1032
1032
|
remove a registered device from your account
|
|
1033
1033
|
```
|
|
1034
1034
|
|
|
1035
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1035
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1036
1036
|
|
|
1037
1037
|
## `eas device:list`
|
|
1038
1038
|
|
|
@@ -1053,7 +1053,7 @@ DESCRIPTION
|
|
|
1053
1053
|
list all registered devices for your account
|
|
1054
1054
|
```
|
|
1055
1055
|
|
|
1056
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1056
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
1057
1057
|
|
|
1058
1058
|
## `eas device:rename`
|
|
1059
1059
|
|
|
@@ -1074,7 +1074,7 @@ DESCRIPTION
|
|
|
1074
1074
|
rename a registered device
|
|
1075
1075
|
```
|
|
1076
1076
|
|
|
1077
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
1077
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1078
1078
|
|
|
1079
1079
|
## `eas device:view [UDID]`
|
|
1080
1080
|
|
|
@@ -1088,7 +1088,7 @@ DESCRIPTION
|
|
|
1088
1088
|
view a device for your project
|
|
1089
1089
|
```
|
|
1090
1090
|
|
|
1091
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1091
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
1092
1092
|
|
|
1093
1093
|
## `eas diagnostics`
|
|
1094
1094
|
|
|
@@ -1102,7 +1102,7 @@ DESCRIPTION
|
|
|
1102
1102
|
display environment info
|
|
1103
1103
|
```
|
|
1104
1104
|
|
|
1105
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/
|
|
1105
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1106
1106
|
|
|
1107
1107
|
## `eas env:create [ENVIRONMENT]`
|
|
1108
1108
|
|
|
@@ -1131,7 +1131,7 @@ DESCRIPTION
|
|
|
1131
1131
|
create an environment variable for the current project or account
|
|
1132
1132
|
```
|
|
1133
1133
|
|
|
1134
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1134
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/create.ts)_
|
|
1135
1135
|
|
|
1136
1136
|
## `eas env:delete [ENVIRONMENT]`
|
|
1137
1137
|
|
|
@@ -1155,7 +1155,7 @@ DESCRIPTION
|
|
|
1155
1155
|
delete an environment variable for the current project or account
|
|
1156
1156
|
```
|
|
1157
1157
|
|
|
1158
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1158
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1159
1159
|
|
|
1160
1160
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1161
1161
|
|
|
@@ -1176,7 +1176,7 @@ DESCRIPTION
|
|
|
1176
1176
|
execute a command with environment variables from the selected environment
|
|
1177
1177
|
```
|
|
1178
1178
|
|
|
1179
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/
|
|
1179
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1180
1180
|
|
|
1181
1181
|
## `eas env:get [ENVIRONMENT]`
|
|
1182
1182
|
|
|
@@ -1201,7 +1201,7 @@ DESCRIPTION
|
|
|
1201
1201
|
view an environment variable for the current project or account
|
|
1202
1202
|
```
|
|
1203
1203
|
|
|
1204
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/
|
|
1204
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/get.ts)_
|
|
1205
1205
|
|
|
1206
1206
|
## `eas env:list [ENVIRONMENT]`
|
|
1207
1207
|
|
|
@@ -1226,7 +1226,7 @@ DESCRIPTION
|
|
|
1226
1226
|
list environment variables for the current project or account
|
|
1227
1227
|
```
|
|
1228
1228
|
|
|
1229
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1229
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/list.ts)_
|
|
1230
1230
|
|
|
1231
1231
|
## `eas env:pull [ENVIRONMENT]`
|
|
1232
1232
|
|
|
@@ -1249,7 +1249,7 @@ DESCRIPTION
|
|
|
1249
1249
|
pull environment variables for the selected environment to .env file
|
|
1250
1250
|
```
|
|
1251
1251
|
|
|
1252
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
1252
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1253
1253
|
|
|
1254
1254
|
## `eas env:push [ENVIRONMENT]`
|
|
1255
1255
|
|
|
@@ -1270,7 +1270,7 @@ DESCRIPTION
|
|
|
1270
1270
|
push environment variables from .env file to the selected environment
|
|
1271
1271
|
```
|
|
1272
1272
|
|
|
1273
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1273
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/push.ts)_
|
|
1274
1274
|
|
|
1275
1275
|
## `eas env:update [ENVIRONMENT]`
|
|
1276
1276
|
|
|
@@ -1301,7 +1301,7 @@ DESCRIPTION
|
|
|
1301
1301
|
update an environment variable on the current project or account
|
|
1302
1302
|
```
|
|
1303
1303
|
|
|
1304
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/
|
|
1304
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/env/update.ts)_
|
|
1305
1305
|
|
|
1306
1306
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1307
1307
|
|
|
@@ -1309,16 +1309,17 @@ compare fingerprints of the current project, builds and updates
|
|
|
1309
1309
|
|
|
1310
1310
|
```
|
|
1311
1311
|
USAGE
|
|
1312
|
-
$ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--json --non-interactive]
|
|
1312
|
+
$ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--update-id <value>] [--json --non-interactive]
|
|
1313
1313
|
|
|
1314
1314
|
ARGUMENTS
|
|
1315
1315
|
HASH1 If provided alone, HASH1 is compared against the current project's fingerprint.
|
|
1316
1316
|
HASH2 If two hashes are provided, HASH1 is compared against HASH2.
|
|
1317
1317
|
|
|
1318
1318
|
FLAGS
|
|
1319
|
-
--build-id=<value
|
|
1320
|
-
--json
|
|
1321
|
-
--non-interactive
|
|
1319
|
+
--build-id=<value>... Compare the fingerprint with the build with the specified ID
|
|
1320
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1321
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1322
|
+
--update-id=<value>... Compare the fingerprint with the update with the specified ID
|
|
1322
1323
|
|
|
1323
1324
|
DESCRIPTION
|
|
1324
1325
|
compare fingerprints of the current project, builds and updates
|
|
@@ -1326,14 +1327,20 @@ DESCRIPTION
|
|
|
1326
1327
|
EXAMPLES
|
|
1327
1328
|
$ eas fingerprint:compare # Compare fingerprints in interactive mode
|
|
1328
1329
|
|
|
1329
|
-
$ eas fingerprint:compare
|
|
1330
|
+
$ eas fingerprint:compare <FINGERPRINT-HASH> # Compare fingerprint against local directory
|
|
1331
|
+
|
|
1332
|
+
$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> # Compare provided fingerprints
|
|
1333
|
+
|
|
1334
|
+
$ eas fingerprint:compare --build-id <BUILD-ID> # Compare fingerprint from build against local directory
|
|
1335
|
+
|
|
1336
|
+
$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2> # Compare fingerprint from a build against another build
|
|
1330
1337
|
|
|
1331
|
-
$ eas fingerprint:compare
|
|
1338
|
+
$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID> # Compare fingerprint from build against fingerprint from update
|
|
1332
1339
|
|
|
1333
|
-
$ eas fingerprint:compare --
|
|
1340
|
+
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1334
1341
|
```
|
|
1335
1342
|
|
|
1336
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/
|
|
1343
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1337
1344
|
|
|
1338
1345
|
## `eas help [COMMAND]`
|
|
1339
1346
|
|
|
@@ -1441,7 +1448,7 @@ DESCRIPTION
|
|
|
1441
1448
|
validate the local store configuration
|
|
1442
1449
|
```
|
|
1443
1450
|
|
|
1444
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/
|
|
1451
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1445
1452
|
|
|
1446
1453
|
## `eas metadata:pull`
|
|
1447
1454
|
|
|
@@ -1458,7 +1465,7 @@ DESCRIPTION
|
|
|
1458
1465
|
generate the local store configuration from the app stores
|
|
1459
1466
|
```
|
|
1460
1467
|
|
|
1461
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
1468
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1462
1469
|
|
|
1463
1470
|
## `eas metadata:push`
|
|
1464
1471
|
|
|
@@ -1475,7 +1482,7 @@ DESCRIPTION
|
|
|
1475
1482
|
sync the local store configuration to the app stores
|
|
1476
1483
|
```
|
|
1477
1484
|
|
|
1478
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1485
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1479
1486
|
|
|
1480
1487
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1481
1488
|
|
|
@@ -1505,7 +1512,7 @@ DESCRIPTION
|
|
|
1505
1512
|
open the project page in a web browser
|
|
1506
1513
|
```
|
|
1507
1514
|
|
|
1508
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/
|
|
1515
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/open.ts)_
|
|
1509
1516
|
|
|
1510
1517
|
## `eas project:info`
|
|
1511
1518
|
|
|
@@ -1519,7 +1526,7 @@ DESCRIPTION
|
|
|
1519
1526
|
information about the current project
|
|
1520
1527
|
```
|
|
1521
1528
|
|
|
1522
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/
|
|
1529
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1523
1530
|
|
|
1524
1531
|
## `eas project:init`
|
|
1525
1532
|
|
|
@@ -1542,7 +1549,7 @@ ALIASES
|
|
|
1542
1549
|
$ eas init
|
|
1543
1550
|
```
|
|
1544
1551
|
|
|
1545
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/
|
|
1552
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1546
1553
|
|
|
1547
1554
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1548
1555
|
|
|
@@ -1560,7 +1567,7 @@ ALIASES
|
|
|
1560
1567
|
$ eas onboarding
|
|
1561
1568
|
```
|
|
1562
1569
|
|
|
1563
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/
|
|
1570
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1564
1571
|
|
|
1565
1572
|
## `eas submit`
|
|
1566
1573
|
|
|
@@ -1591,7 +1598,7 @@ ALIASES
|
|
|
1591
1598
|
$ eas build:submit
|
|
1592
1599
|
```
|
|
1593
1600
|
|
|
1594
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/
|
|
1601
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1595
1602
|
|
|
1596
1603
|
## `eas update`
|
|
1597
1604
|
|
|
@@ -1633,7 +1640,7 @@ DESCRIPTION
|
|
|
1633
1640
|
publish an update group
|
|
1634
1641
|
```
|
|
1635
1642
|
|
|
1636
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/
|
|
1643
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1637
1644
|
|
|
1638
1645
|
## `eas update:configure`
|
|
1639
1646
|
|
|
@@ -1653,7 +1660,7 @@ DESCRIPTION
|
|
|
1653
1660
|
configure the project to support EAS Update
|
|
1654
1661
|
```
|
|
1655
1662
|
|
|
1656
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
1663
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1657
1664
|
|
|
1658
1665
|
## `eas update:delete GROUPID`
|
|
1659
1666
|
|
|
@@ -1674,7 +1681,7 @@ DESCRIPTION
|
|
|
1674
1681
|
delete all the updates in an update group
|
|
1675
1682
|
```
|
|
1676
1683
|
|
|
1677
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1684
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1678
1685
|
|
|
1679
1686
|
## `eas update:edit [GROUPID]`
|
|
1680
1687
|
|
|
@@ -1698,7 +1705,7 @@ DESCRIPTION
|
|
|
1698
1705
|
edit all the updates in an update group
|
|
1699
1706
|
```
|
|
1700
1707
|
|
|
1701
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
1708
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1702
1709
|
|
|
1703
1710
|
## `eas update:list`
|
|
1704
1711
|
|
|
@@ -1720,7 +1727,7 @@ DESCRIPTION
|
|
|
1720
1727
|
view the recent updates
|
|
1721
1728
|
```
|
|
1722
1729
|
|
|
1723
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1730
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1724
1731
|
|
|
1725
1732
|
## `eas update:republish`
|
|
1726
1733
|
|
|
@@ -1752,7 +1759,7 @@ DESCRIPTION
|
|
|
1752
1759
|
roll back to an existing update
|
|
1753
1760
|
```
|
|
1754
1761
|
|
|
1755
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/
|
|
1762
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1756
1763
|
|
|
1757
1764
|
## `eas update:roll-back-to-embedded`
|
|
1758
1765
|
|
|
@@ -1780,7 +1787,7 @@ DESCRIPTION
|
|
|
1780
1787
|
roll back to the embedded update
|
|
1781
1788
|
```
|
|
1782
1789
|
|
|
1783
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/
|
|
1790
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1784
1791
|
|
|
1785
1792
|
## `eas update:rollback`
|
|
1786
1793
|
|
|
@@ -1800,7 +1807,7 @@ DESCRIPTION
|
|
|
1800
1807
|
roll back to an embedded update or an existing update
|
|
1801
1808
|
```
|
|
1802
1809
|
|
|
1803
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/
|
|
1810
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1804
1811
|
|
|
1805
1812
|
## `eas update:view GROUPID`
|
|
1806
1813
|
|
|
@@ -1820,7 +1827,7 @@ DESCRIPTION
|
|
|
1820
1827
|
update group details
|
|
1821
1828
|
```
|
|
1822
1829
|
|
|
1823
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1830
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1824
1831
|
|
|
1825
1832
|
## `eas webhook:create`
|
|
1826
1833
|
|
|
@@ -1841,7 +1848,7 @@ DESCRIPTION
|
|
|
1841
1848
|
create a webhook
|
|
1842
1849
|
```
|
|
1843
1850
|
|
|
1844
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1851
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1845
1852
|
|
|
1846
1853
|
## `eas webhook:delete [ID]`
|
|
1847
1854
|
|
|
@@ -1861,7 +1868,7 @@ DESCRIPTION
|
|
|
1861
1868
|
delete a webhook
|
|
1862
1869
|
```
|
|
1863
1870
|
|
|
1864
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1871
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1865
1872
|
|
|
1866
1873
|
## `eas webhook:list`
|
|
1867
1874
|
|
|
@@ -1879,7 +1886,7 @@ DESCRIPTION
|
|
|
1879
1886
|
list webhooks
|
|
1880
1887
|
```
|
|
1881
1888
|
|
|
1882
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1889
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1883
1890
|
|
|
1884
1891
|
## `eas webhook:update`
|
|
1885
1892
|
|
|
@@ -1901,7 +1908,7 @@ DESCRIPTION
|
|
|
1901
1908
|
update a webhook
|
|
1902
1909
|
```
|
|
1903
1910
|
|
|
1904
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/
|
|
1911
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1905
1912
|
|
|
1906
1913
|
## `eas webhook:view ID`
|
|
1907
1914
|
|
|
@@ -1918,7 +1925,7 @@ DESCRIPTION
|
|
|
1918
1925
|
view a webhook
|
|
1919
1926
|
```
|
|
1920
1927
|
|
|
1921
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1928
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1922
1929
|
|
|
1923
1930
|
## `eas whoami`
|
|
1924
1931
|
|
|
@@ -2002,7 +2009,7 @@ DESCRIPTION
|
|
|
2002
2009
|
create a new workflow configuration YAML file
|
|
2003
2010
|
```
|
|
2004
2011
|
|
|
2005
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/
|
|
2012
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2006
2013
|
|
|
2007
2014
|
## `eas workflow:run [FILE]`
|
|
2008
2015
|
|
|
@@ -2022,7 +2029,7 @@ DESCRIPTION
|
|
|
2022
2029
|
Run an EAS workflow
|
|
2023
2030
|
```
|
|
2024
2031
|
|
|
2025
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/
|
|
2032
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2026
2033
|
|
|
2027
2034
|
## `eas workflow:validate PATH`
|
|
2028
2035
|
|
|
@@ -2042,5 +2049,5 @@ DESCRIPTION
|
|
|
2042
2049
|
validate a workflow configuration yaml file
|
|
2043
2050
|
```
|
|
2044
2051
|
|
|
2045
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/
|
|
2052
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v15.0.1/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2046
2053
|
<!-- commandsstop -->
|