eas-cli 3.3.2 → 3.4.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 +55 -53
- package/build/build/build.d.ts +3 -1
- package/build/build/build.js +93 -27
- package/build/build/configure.js +20 -2
- package/build/build/local.d.ts +18 -1
- package/build/build/local.js +20 -2
- package/build/build/runBuildAndSubmit.js +3 -1
- package/build/commands/build/index.js +5 -6
- package/build/commands/build/inspect.js +2 -1
- package/build/commands/build/internal.d.ts +21 -0
- package/build/commands/build/internal.js +60 -0
- package/build/commands/build/resign.js +2 -0
- package/build/commands/config.d.ts +3 -0
- package/build/commands/config.js +44 -15
- package/build/graphql/generated.d.ts +11 -2
- package/build/graphql/types/Build.js +1 -0
- package/build/vcs/index.js +6 -2
- package/build/vcs/local.d.ts +0 -1
- package/build/vcs/local.js +2 -11
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -130,7 +130,7 @@ ALIASES
|
|
|
130
130
|
$ eas login
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
133
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
134
134
|
|
|
135
135
|
## `eas account:logout`
|
|
136
136
|
|
|
@@ -147,7 +147,7 @@ ALIASES
|
|
|
147
147
|
$ eas logout
|
|
148
148
|
```
|
|
149
149
|
|
|
150
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
150
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
151
151
|
|
|
152
152
|
## `eas account:view`
|
|
153
153
|
|
|
@@ -164,7 +164,7 @@ ALIASES
|
|
|
164
164
|
$ eas whoami
|
|
165
165
|
```
|
|
166
166
|
|
|
167
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
167
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
168
168
|
|
|
169
169
|
## `eas analytics [STATUS]`
|
|
170
170
|
|
|
@@ -178,7 +178,7 @@ DESCRIPTION
|
|
|
178
178
|
display or change analytics settings
|
|
179
179
|
```
|
|
180
180
|
|
|
181
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
181
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
182
182
|
|
|
183
183
|
## `eas autocomplete [SHELL]`
|
|
184
184
|
|
|
@@ -228,7 +228,7 @@ DESCRIPTION
|
|
|
228
228
|
create a branch
|
|
229
229
|
```
|
|
230
230
|
|
|
231
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
231
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
232
232
|
|
|
233
233
|
## `eas branch:delete [NAME]`
|
|
234
234
|
|
|
@@ -249,7 +249,7 @@ DESCRIPTION
|
|
|
249
249
|
delete a branch
|
|
250
250
|
```
|
|
251
251
|
|
|
252
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
252
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
253
253
|
|
|
254
254
|
## `eas branch:list`
|
|
255
255
|
|
|
@@ -269,7 +269,7 @@ DESCRIPTION
|
|
|
269
269
|
list all branches
|
|
270
270
|
```
|
|
271
271
|
|
|
272
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
272
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
273
273
|
|
|
274
274
|
## `eas branch:rename`
|
|
275
275
|
|
|
@@ -289,7 +289,7 @@ DESCRIPTION
|
|
|
289
289
|
rename a branch
|
|
290
290
|
```
|
|
291
291
|
|
|
292
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
292
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
293
293
|
|
|
294
294
|
## `eas branch:view [NAME]`
|
|
295
295
|
|
|
@@ -312,7 +312,7 @@ DESCRIPTION
|
|
|
312
312
|
view a branch
|
|
313
313
|
```
|
|
314
314
|
|
|
315
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
315
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
316
316
|
|
|
317
317
|
## `eas build`
|
|
318
318
|
|
|
@@ -342,7 +342,7 @@ DESCRIPTION
|
|
|
342
342
|
start a build
|
|
343
343
|
```
|
|
344
344
|
|
|
345
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
345
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
346
346
|
|
|
347
347
|
## `eas build:cancel [BUILD_ID]`
|
|
348
348
|
|
|
@@ -359,7 +359,7 @@ DESCRIPTION
|
|
|
359
359
|
cancel a build
|
|
360
360
|
```
|
|
361
361
|
|
|
362
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
362
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
363
363
|
|
|
364
364
|
## `eas build:configure`
|
|
365
365
|
|
|
@@ -376,7 +376,7 @@ DESCRIPTION
|
|
|
376
376
|
configure the project to support EAS Build
|
|
377
377
|
```
|
|
378
378
|
|
|
379
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
379
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
380
380
|
|
|
381
381
|
## `eas build:inspect`
|
|
382
382
|
|
|
@@ -411,7 +411,7 @@ DESCRIPTION
|
|
|
411
411
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
412
412
|
```
|
|
413
413
|
|
|
414
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
414
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
415
415
|
|
|
416
416
|
## `eas build:list`
|
|
417
417
|
|
|
@@ -448,7 +448,7 @@ DESCRIPTION
|
|
|
448
448
|
list all builds for your project
|
|
449
449
|
```
|
|
450
450
|
|
|
451
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
451
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
452
452
|
|
|
453
453
|
## `eas build:resign`
|
|
454
454
|
|
|
@@ -474,7 +474,7 @@ DESCRIPTION
|
|
|
474
474
|
re-sign a build archive
|
|
475
475
|
```
|
|
476
476
|
|
|
477
|
-
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
477
|
+
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
478
478
|
|
|
479
479
|
## `eas build:run`
|
|
480
480
|
|
|
@@ -498,7 +498,7 @@ DESCRIPTION
|
|
|
498
498
|
run simulator/emulator builds from eas-cli
|
|
499
499
|
```
|
|
500
500
|
|
|
501
|
-
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
501
|
+
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
502
502
|
|
|
503
503
|
## `eas build:submit`
|
|
504
504
|
|
|
@@ -545,7 +545,7 @@ DESCRIPTION
|
|
|
545
545
|
Update version of an app.
|
|
546
546
|
```
|
|
547
547
|
|
|
548
|
-
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
548
|
+
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
549
549
|
|
|
550
550
|
## `eas build:version:sync`
|
|
551
551
|
|
|
@@ -564,7 +564,7 @@ DESCRIPTION
|
|
|
564
564
|
Update a version in native code with a value stored on EAS servers
|
|
565
565
|
```
|
|
566
566
|
|
|
567
|
-
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
567
|
+
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
568
568
|
|
|
569
569
|
## `eas build:view [BUILD_ID]`
|
|
570
570
|
|
|
@@ -581,7 +581,7 @@ DESCRIPTION
|
|
|
581
581
|
view a build for your project
|
|
582
582
|
```
|
|
583
583
|
|
|
584
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
584
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
585
585
|
|
|
586
586
|
## `eas channel:create [NAME]`
|
|
587
587
|
|
|
@@ -602,7 +602,7 @@ DESCRIPTION
|
|
|
602
602
|
create a channel
|
|
603
603
|
```
|
|
604
604
|
|
|
605
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
605
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
606
606
|
|
|
607
607
|
## `eas channel:edit [NAME]`
|
|
608
608
|
|
|
@@ -624,7 +624,7 @@ DESCRIPTION
|
|
|
624
624
|
point a channel at a new branch
|
|
625
625
|
```
|
|
626
626
|
|
|
627
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
627
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
628
628
|
|
|
629
629
|
## `eas channel:list`
|
|
630
630
|
|
|
@@ -644,7 +644,7 @@ DESCRIPTION
|
|
|
644
644
|
list all channels
|
|
645
645
|
```
|
|
646
646
|
|
|
647
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
647
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
648
648
|
|
|
649
649
|
## `eas channel:view [NAME]`
|
|
650
650
|
|
|
@@ -667,7 +667,7 @@ DESCRIPTION
|
|
|
667
667
|
view a channel
|
|
668
668
|
```
|
|
669
669
|
|
|
670
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
670
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
671
671
|
|
|
672
672
|
## `eas config`
|
|
673
673
|
|
|
@@ -675,18 +675,20 @@ display project configuration (app.json + eas.json)
|
|
|
675
675
|
|
|
676
676
|
```
|
|
677
677
|
USAGE
|
|
678
|
-
$ eas config [-p android|ios] [-e <value>]
|
|
678
|
+
$ eas config [-p android|ios] [-e <value>] [--json --non-interactive]
|
|
679
679
|
|
|
680
680
|
FLAGS
|
|
681
681
|
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
682
682
|
eas.json.
|
|
683
683
|
-p, --platform=(android|ios)
|
|
684
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
685
|
+
--non-interactive Run the command in non-interactive mode.
|
|
684
686
|
|
|
685
687
|
DESCRIPTION
|
|
686
688
|
display project configuration (app.json + eas.json)
|
|
687
689
|
```
|
|
688
690
|
|
|
689
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
691
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/config.ts)_
|
|
690
692
|
|
|
691
693
|
## `eas credentials`
|
|
692
694
|
|
|
@@ -703,7 +705,7 @@ DESCRIPTION
|
|
|
703
705
|
manage credentials
|
|
704
706
|
```
|
|
705
707
|
|
|
706
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
708
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/credentials.ts)_
|
|
707
709
|
|
|
708
710
|
## `eas device:create`
|
|
709
711
|
|
|
@@ -717,7 +719,7 @@ DESCRIPTION
|
|
|
717
719
|
register new Apple Devices to use for internal distribution
|
|
718
720
|
```
|
|
719
721
|
|
|
720
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
722
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
721
723
|
|
|
722
724
|
## `eas device:delete`
|
|
723
725
|
|
|
@@ -737,7 +739,7 @@ DESCRIPTION
|
|
|
737
739
|
remove a registered device from your account
|
|
738
740
|
```
|
|
739
741
|
|
|
740
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
742
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
741
743
|
|
|
742
744
|
## `eas device:list`
|
|
743
745
|
|
|
@@ -758,7 +760,7 @@ DESCRIPTION
|
|
|
758
760
|
list all registered devices for your account
|
|
759
761
|
```
|
|
760
762
|
|
|
761
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
763
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
762
764
|
|
|
763
765
|
## `eas device:view [UDID]`
|
|
764
766
|
|
|
@@ -772,7 +774,7 @@ DESCRIPTION
|
|
|
772
774
|
view a device for your project
|
|
773
775
|
```
|
|
774
776
|
|
|
775
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
777
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
776
778
|
|
|
777
779
|
## `eas diagnostics`
|
|
778
780
|
|
|
@@ -786,7 +788,7 @@ DESCRIPTION
|
|
|
786
788
|
display environment info
|
|
787
789
|
```
|
|
788
790
|
|
|
789
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
791
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
790
792
|
|
|
791
793
|
## `eas help [COMMAND]`
|
|
792
794
|
|
|
@@ -874,7 +876,7 @@ DESCRIPTION
|
|
|
874
876
|
validate the local store configuration
|
|
875
877
|
```
|
|
876
878
|
|
|
877
|
-
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
879
|
+
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
878
880
|
|
|
879
881
|
## `eas metadata:pull`
|
|
880
882
|
|
|
@@ -891,7 +893,7 @@ DESCRIPTION
|
|
|
891
893
|
generate the local store configuration from the app stores
|
|
892
894
|
```
|
|
893
895
|
|
|
894
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
896
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
895
897
|
|
|
896
898
|
## `eas metadata:push`
|
|
897
899
|
|
|
@@ -908,7 +910,7 @@ DESCRIPTION
|
|
|
908
910
|
sync the local store configuration to the app stores
|
|
909
911
|
```
|
|
910
912
|
|
|
911
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
913
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
912
914
|
|
|
913
915
|
## `eas open`
|
|
914
916
|
|
|
@@ -922,7 +924,7 @@ DESCRIPTION
|
|
|
922
924
|
open the project page in a web browser
|
|
923
925
|
```
|
|
924
926
|
|
|
925
|
-
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
927
|
+
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/open.ts)_
|
|
926
928
|
|
|
927
929
|
## `eas project:info`
|
|
928
930
|
|
|
@@ -936,7 +938,7 @@ DESCRIPTION
|
|
|
936
938
|
information about the current project
|
|
937
939
|
```
|
|
938
940
|
|
|
939
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
941
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
940
942
|
|
|
941
943
|
## `eas project:init`
|
|
942
944
|
|
|
@@ -958,7 +960,7 @@ ALIASES
|
|
|
958
960
|
$ eas init
|
|
959
961
|
```
|
|
960
962
|
|
|
961
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
963
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
962
964
|
|
|
963
965
|
## `eas secret:create`
|
|
964
966
|
|
|
@@ -981,7 +983,7 @@ DESCRIPTION
|
|
|
981
983
|
create an environment secret on the current project or owner account
|
|
982
984
|
```
|
|
983
985
|
|
|
984
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
986
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/secret/create.ts)_
|
|
985
987
|
|
|
986
988
|
## `eas secret:delete`
|
|
987
989
|
|
|
@@ -999,7 +1001,7 @@ DESCRIPTION
|
|
|
999
1001
|
delete an environment secret by ID
|
|
1000
1002
|
```
|
|
1001
1003
|
|
|
1002
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1004
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1003
1005
|
|
|
1004
1006
|
## `eas secret:list`
|
|
1005
1007
|
|
|
@@ -1013,7 +1015,7 @@ DESCRIPTION
|
|
|
1013
1015
|
list environment secrets available for your current app
|
|
1014
1016
|
```
|
|
1015
1017
|
|
|
1016
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1018
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1017
1019
|
|
|
1018
1020
|
## `eas secret:push`
|
|
1019
1021
|
|
|
@@ -1033,7 +1035,7 @@ DESCRIPTION
|
|
|
1033
1035
|
read environment secrets from env file and store on the server
|
|
1034
1036
|
```
|
|
1035
1037
|
|
|
1036
|
-
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1038
|
+
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1037
1039
|
|
|
1038
1040
|
## `eas submit`
|
|
1039
1041
|
|
|
@@ -1063,7 +1065,7 @@ ALIASES
|
|
|
1063
1065
|
$ eas build:submit
|
|
1064
1066
|
```
|
|
1065
1067
|
|
|
1066
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1068
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1067
1069
|
|
|
1068
1070
|
## `eas update`
|
|
1069
1071
|
|
|
@@ -1095,7 +1097,7 @@ DESCRIPTION
|
|
|
1095
1097
|
publish an update group
|
|
1096
1098
|
```
|
|
1097
1099
|
|
|
1098
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1100
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1099
1101
|
|
|
1100
1102
|
## `eas update:configure`
|
|
1101
1103
|
|
|
@@ -1113,7 +1115,7 @@ DESCRIPTION
|
|
|
1113
1115
|
configure the project to support EAS Update
|
|
1114
1116
|
```
|
|
1115
1117
|
|
|
1116
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1118
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1117
1119
|
|
|
1118
1120
|
## `eas update:delete GROUPID`
|
|
1119
1121
|
|
|
@@ -1134,7 +1136,7 @@ DESCRIPTION
|
|
|
1134
1136
|
delete all the updates in an update group
|
|
1135
1137
|
```
|
|
1136
1138
|
|
|
1137
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1139
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1138
1140
|
|
|
1139
1141
|
## `eas update:list`
|
|
1140
1142
|
|
|
@@ -1156,7 +1158,7 @@ DESCRIPTION
|
|
|
1156
1158
|
view the recent updates
|
|
1157
1159
|
```
|
|
1158
1160
|
|
|
1159
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1161
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1160
1162
|
|
|
1161
1163
|
## `eas update:republish`
|
|
1162
1164
|
|
|
@@ -1180,7 +1182,7 @@ DESCRIPTION
|
|
|
1180
1182
|
rollback to an existing update
|
|
1181
1183
|
```
|
|
1182
1184
|
|
|
1183
|
-
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1185
|
+
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1184
1186
|
|
|
1185
1187
|
## `eas update:view GROUPID`
|
|
1186
1188
|
|
|
@@ -1200,7 +1202,7 @@ DESCRIPTION
|
|
|
1200
1202
|
update group details
|
|
1201
1203
|
```
|
|
1202
1204
|
|
|
1203
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1205
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1204
1206
|
|
|
1205
1207
|
## `eas webhook:create`
|
|
1206
1208
|
|
|
@@ -1221,7 +1223,7 @@ DESCRIPTION
|
|
|
1221
1223
|
create a webhook
|
|
1222
1224
|
```
|
|
1223
1225
|
|
|
1224
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1226
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1225
1227
|
|
|
1226
1228
|
## `eas webhook:delete [ID]`
|
|
1227
1229
|
|
|
@@ -1241,7 +1243,7 @@ DESCRIPTION
|
|
|
1241
1243
|
delete a webhook
|
|
1242
1244
|
```
|
|
1243
1245
|
|
|
1244
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1246
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1245
1247
|
|
|
1246
1248
|
## `eas webhook:list`
|
|
1247
1249
|
|
|
@@ -1259,7 +1261,7 @@ DESCRIPTION
|
|
|
1259
1261
|
list webhooks
|
|
1260
1262
|
```
|
|
1261
1263
|
|
|
1262
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1264
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1263
1265
|
|
|
1264
1266
|
## `eas webhook:update`
|
|
1265
1267
|
|
|
@@ -1281,7 +1283,7 @@ DESCRIPTION
|
|
|
1281
1283
|
update a webhook
|
|
1282
1284
|
```
|
|
1283
1285
|
|
|
1284
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1286
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1285
1287
|
|
|
1286
1288
|
## `eas webhook:view ID`
|
|
1287
1289
|
|
|
@@ -1298,7 +1300,7 @@ DESCRIPTION
|
|
|
1298
1300
|
view a webhook
|
|
1299
1301
|
```
|
|
1300
1302
|
|
|
1301
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1303
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.4.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1302
1304
|
|
|
1303
1305
|
## `eas whoami`
|
|
1304
1306
|
|
package/build/build/build.d.ts
CHANGED
|
@@ -22,9 +22,11 @@ interface Builder<TPlatform extends Platform, Credentials, TJob extends Job> {
|
|
|
22
22
|
export type BuildRequestSender = () => Promise<BuildFragment | undefined>;
|
|
23
23
|
export declare function prepareBuildRequestForPlatformAsync<TPlatform extends Platform, Credentials, TJob extends Job>(builder: Builder<TPlatform, Credentials, TJob>): Promise<BuildRequestSender>;
|
|
24
24
|
export type MaybeBuildFragment = BuildFragment | null;
|
|
25
|
-
export declare function waitForBuildEndAsync(graphqlClient: ExpoGraphqlClient, { buildIds, accountName }: {
|
|
25
|
+
export declare function waitForBuildEndAsync(graphqlClient: ExpoGraphqlClient, { buildIds, accountName, projectDir, nonInteractive, }: {
|
|
26
26
|
buildIds: string[];
|
|
27
27
|
accountName: string;
|
|
28
|
+
projectDir: string;
|
|
29
|
+
nonInteractive: boolean;
|
|
28
30
|
}, { intervalSec }?: {
|
|
29
31
|
intervalSec?: number | undefined;
|
|
30
32
|
}): Promise<MaybeBuildFragment[]>;
|