eas-cli 3.1.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +105 -54
- package/build/branch/queries.js +1 -1
- package/build/build/build.js +4 -4
- package/build/build/queries.d.ts +4 -10
- package/build/build/queries.js +21 -47
- package/build/build/utils/printBuildInfo.js +4 -5
- package/build/channel/queries.js +1 -1
- package/build/commands/build/run.js +5 -4
- package/build/commands/project/init.js +2 -6
- package/build/commands/update/configure.js +1 -0
- package/build/commands/update/republish.d.ts +3 -0
- package/build/commands/update/republish.js +37 -6
- package/build/commands/webhook/list.d.ts +1 -0
- package/build/commands/webhook/list.js +16 -5
- package/build/credentials/ios/utils/convertHTMLToASCII.js +2 -5
- package/build/devices/queries.js +2 -2
- package/build/graphql/generated.d.ts +14 -0
- package/build/graphql/types/Build.js +1 -0
- package/build/log.js +3 -7
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +2 -5
- package/build/prompts.d.ts +4 -1
- package/build/prompts.js +4 -2
- package/build/run/utils.js +1 -1
- package/build/submit/ArchiveSource.js +7 -7
- package/build/submit/utils/urls.js +3 -4
- package/build/update/configure.d.ts +5 -1
- package/build/update/configure.js +3 -3
- package/build/update/getBranchNameFromChannelNameAsync.js +1 -1
- package/build/update/queries.js +1 -1
- package/build/utils/queries.d.ts +3 -1
- package/build/utils/queries.js +4 -2
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -97,6 +97,8 @@ eas --help COMMAND
|
|
|
97
97
|
* [`eas open`](#eas-open)
|
|
98
98
|
* [`eas project:info`](#eas-projectinfo)
|
|
99
99
|
* [`eas project:init`](#eas-projectinit)
|
|
100
|
+
* [`eas run`](#eas-run)
|
|
101
|
+
* [`eas run:run`](#eas-runrun)
|
|
100
102
|
* [`eas secret:create`](#eas-secretcreate)
|
|
101
103
|
* [`eas secret:delete`](#eas-secretdelete)
|
|
102
104
|
* [`eas secret:list`](#eas-secretlist)
|
|
@@ -130,7 +132,7 @@ ALIASES
|
|
|
130
132
|
$ eas login
|
|
131
133
|
```
|
|
132
134
|
|
|
133
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
135
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
134
136
|
|
|
135
137
|
## `eas account:logout`
|
|
136
138
|
|
|
@@ -147,7 +149,7 @@ ALIASES
|
|
|
147
149
|
$ eas logout
|
|
148
150
|
```
|
|
149
151
|
|
|
150
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
152
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
151
153
|
|
|
152
154
|
## `eas account:view`
|
|
153
155
|
|
|
@@ -164,7 +166,7 @@ ALIASES
|
|
|
164
166
|
$ eas whoami
|
|
165
167
|
```
|
|
166
168
|
|
|
167
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
169
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
168
170
|
|
|
169
171
|
## `eas analytics [STATUS]`
|
|
170
172
|
|
|
@@ -178,7 +180,7 @@ DESCRIPTION
|
|
|
178
180
|
display or change analytics settings
|
|
179
181
|
```
|
|
180
182
|
|
|
181
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
183
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
182
184
|
|
|
183
185
|
## `eas autocomplete [SHELL]`
|
|
184
186
|
|
|
@@ -228,7 +230,7 @@ DESCRIPTION
|
|
|
228
230
|
create a branch
|
|
229
231
|
```
|
|
230
232
|
|
|
231
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
233
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
232
234
|
|
|
233
235
|
## `eas branch:delete [NAME]`
|
|
234
236
|
|
|
@@ -249,7 +251,7 @@ DESCRIPTION
|
|
|
249
251
|
delete a branch
|
|
250
252
|
```
|
|
251
253
|
|
|
252
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
254
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
253
255
|
|
|
254
256
|
## `eas branch:list`
|
|
255
257
|
|
|
@@ -269,7 +271,7 @@ DESCRIPTION
|
|
|
269
271
|
list all branches
|
|
270
272
|
```
|
|
271
273
|
|
|
272
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
274
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
273
275
|
|
|
274
276
|
## `eas branch:rename`
|
|
275
277
|
|
|
@@ -289,7 +291,7 @@ DESCRIPTION
|
|
|
289
291
|
rename a branch
|
|
290
292
|
```
|
|
291
293
|
|
|
292
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
294
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
293
295
|
|
|
294
296
|
## `eas branch:view [NAME]`
|
|
295
297
|
|
|
@@ -312,7 +314,7 @@ DESCRIPTION
|
|
|
312
314
|
view a branch
|
|
313
315
|
```
|
|
314
316
|
|
|
315
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
317
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
316
318
|
|
|
317
319
|
## `eas build`
|
|
318
320
|
|
|
@@ -342,7 +344,7 @@ DESCRIPTION
|
|
|
342
344
|
start a build
|
|
343
345
|
```
|
|
344
346
|
|
|
345
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
347
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
346
348
|
|
|
347
349
|
## `eas build:cancel [BUILD_ID]`
|
|
348
350
|
|
|
@@ -359,7 +361,7 @@ DESCRIPTION
|
|
|
359
361
|
cancel a build
|
|
360
362
|
```
|
|
361
363
|
|
|
362
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
364
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
363
365
|
|
|
364
366
|
## `eas build:configure`
|
|
365
367
|
|
|
@@ -376,7 +378,7 @@ DESCRIPTION
|
|
|
376
378
|
configure the project to support EAS Build
|
|
377
379
|
```
|
|
378
380
|
|
|
379
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
381
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
380
382
|
|
|
381
383
|
## `eas build:inspect`
|
|
382
384
|
|
|
@@ -411,7 +413,7 @@ DESCRIPTION
|
|
|
411
413
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
412
414
|
```
|
|
413
415
|
|
|
414
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
416
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
415
417
|
|
|
416
418
|
## `eas build:list`
|
|
417
419
|
|
|
@@ -448,7 +450,7 @@ DESCRIPTION
|
|
|
448
450
|
list all builds for your project
|
|
449
451
|
```
|
|
450
452
|
|
|
451
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
453
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
452
454
|
|
|
453
455
|
## `eas build:resign`
|
|
454
456
|
|
|
@@ -474,7 +476,7 @@ DESCRIPTION
|
|
|
474
476
|
re-sign a build archive
|
|
475
477
|
```
|
|
476
478
|
|
|
477
|
-
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
479
|
+
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
478
480
|
|
|
479
481
|
## `eas build:run`
|
|
480
482
|
|
|
@@ -498,7 +500,7 @@ DESCRIPTION
|
|
|
498
500
|
run simulator/emulator builds from eas-cli
|
|
499
501
|
```
|
|
500
502
|
|
|
501
|
-
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
503
|
+
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
502
504
|
|
|
503
505
|
## `eas build:submit`
|
|
504
506
|
|
|
@@ -545,7 +547,7 @@ DESCRIPTION
|
|
|
545
547
|
Update version of an app.
|
|
546
548
|
```
|
|
547
549
|
|
|
548
|
-
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
550
|
+
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
549
551
|
|
|
550
552
|
## `eas build:version:sync`
|
|
551
553
|
|
|
@@ -564,7 +566,7 @@ DESCRIPTION
|
|
|
564
566
|
Update a version in native code with a value stored on EAS servers
|
|
565
567
|
```
|
|
566
568
|
|
|
567
|
-
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
569
|
+
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
568
570
|
|
|
569
571
|
## `eas build:view [BUILD_ID]`
|
|
570
572
|
|
|
@@ -581,7 +583,7 @@ DESCRIPTION
|
|
|
581
583
|
view a build for your project
|
|
582
584
|
```
|
|
583
585
|
|
|
584
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
586
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
585
587
|
|
|
586
588
|
## `eas channel:create [NAME]`
|
|
587
589
|
|
|
@@ -602,7 +604,7 @@ DESCRIPTION
|
|
|
602
604
|
create a channel
|
|
603
605
|
```
|
|
604
606
|
|
|
605
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
607
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
606
608
|
|
|
607
609
|
## `eas channel:edit [NAME]`
|
|
608
610
|
|
|
@@ -624,7 +626,7 @@ DESCRIPTION
|
|
|
624
626
|
point a channel at a new branch
|
|
625
627
|
```
|
|
626
628
|
|
|
627
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
629
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
628
630
|
|
|
629
631
|
## `eas channel:list`
|
|
630
632
|
|
|
@@ -644,7 +646,7 @@ DESCRIPTION
|
|
|
644
646
|
list all channels
|
|
645
647
|
```
|
|
646
648
|
|
|
647
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
649
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
648
650
|
|
|
649
651
|
## `eas channel:view [NAME]`
|
|
650
652
|
|
|
@@ -667,7 +669,7 @@ DESCRIPTION
|
|
|
667
669
|
view a channel
|
|
668
670
|
```
|
|
669
671
|
|
|
670
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
672
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
671
673
|
|
|
672
674
|
## `eas config`
|
|
673
675
|
|
|
@@ -686,7 +688,7 @@ 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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
940
942
|
|
|
941
943
|
## `eas project:init`
|
|
942
944
|
|
|
@@ -958,7 +960,55 @@ 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.2.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
964
|
+
|
|
965
|
+
## `eas run`
|
|
966
|
+
|
|
967
|
+
run simulator build
|
|
968
|
+
|
|
969
|
+
```
|
|
970
|
+
USAGE
|
|
971
|
+
$ eas run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
|
|
972
|
+
<value>] [--limit <value>]
|
|
973
|
+
|
|
974
|
+
FLAGS
|
|
975
|
+
-p, --platform=(android|ios|all)
|
|
976
|
+
--id=<value> ID of the simulator build to run
|
|
977
|
+
--latest Run the latest simulator build for specified platform
|
|
978
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
979
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
980
|
+
--path=<value> Path to the simulator build file file
|
|
981
|
+
--url=<value> Simulator build archive url
|
|
982
|
+
|
|
983
|
+
DESCRIPTION
|
|
984
|
+
run simulator build
|
|
985
|
+
```
|
|
986
|
+
|
|
987
|
+
_See code: [src/commands/run/index.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/run/index.ts)_
|
|
988
|
+
|
|
989
|
+
## `eas run:run`
|
|
990
|
+
|
|
991
|
+
run simulator build
|
|
992
|
+
|
|
993
|
+
```
|
|
994
|
+
USAGE
|
|
995
|
+
$ eas run:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
|
|
996
|
+
<value>] [--limit <value>]
|
|
997
|
+
|
|
998
|
+
FLAGS
|
|
999
|
+
-p, --platform=(android|ios|all)
|
|
1000
|
+
--id=<value> ID of the simulator build to run
|
|
1001
|
+
--latest Run the latest simulator build for specified platform
|
|
1002
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
1003
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
1004
|
+
--path=<value> Path to the simulator build file file
|
|
1005
|
+
--url=<value> Simulator build archive url
|
|
1006
|
+
|
|
1007
|
+
DESCRIPTION
|
|
1008
|
+
run simulator build
|
|
1009
|
+
```
|
|
1010
|
+
|
|
1011
|
+
_See code: [src/commands/run/run.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/run/run.ts)_
|
|
962
1012
|
|
|
963
1013
|
## `eas secret:create`
|
|
964
1014
|
|
|
@@ -981,7 +1031,7 @@ DESCRIPTION
|
|
|
981
1031
|
create an environment secret on the current project or owner account
|
|
982
1032
|
```
|
|
983
1033
|
|
|
984
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1034
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
985
1035
|
|
|
986
1036
|
## `eas secret:delete`
|
|
987
1037
|
|
|
@@ -999,7 +1049,7 @@ DESCRIPTION
|
|
|
999
1049
|
delete an environment secret by ID
|
|
1000
1050
|
```
|
|
1001
1051
|
|
|
1002
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1052
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1003
1053
|
|
|
1004
1054
|
## `eas secret:list`
|
|
1005
1055
|
|
|
@@ -1013,7 +1063,7 @@ DESCRIPTION
|
|
|
1013
1063
|
list environment secrets available for your current app
|
|
1014
1064
|
```
|
|
1015
1065
|
|
|
1016
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1066
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1017
1067
|
|
|
1018
1068
|
## `eas secret:push`
|
|
1019
1069
|
|
|
@@ -1033,7 +1083,7 @@ DESCRIPTION
|
|
|
1033
1083
|
read environment secrets from env file and store on the server
|
|
1034
1084
|
```
|
|
1035
1085
|
|
|
1036
|
-
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1086
|
+
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1037
1087
|
|
|
1038
1088
|
## `eas submit`
|
|
1039
1089
|
|
|
@@ -1063,7 +1113,7 @@ ALIASES
|
|
|
1063
1113
|
$ eas build:submit
|
|
1064
1114
|
```
|
|
1065
1115
|
|
|
1066
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1116
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1067
1117
|
|
|
1068
1118
|
## `eas update`
|
|
1069
1119
|
|
|
@@ -1095,7 +1145,7 @@ DESCRIPTION
|
|
|
1095
1145
|
publish an update group
|
|
1096
1146
|
```
|
|
1097
1147
|
|
|
1098
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1148
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1099
1149
|
|
|
1100
1150
|
## `eas update:configure`
|
|
1101
1151
|
|
|
@@ -1113,7 +1163,7 @@ DESCRIPTION
|
|
|
1113
1163
|
configure the project to support EAS Update
|
|
1114
1164
|
```
|
|
1115
1165
|
|
|
1116
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1166
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1117
1167
|
|
|
1118
1168
|
## `eas update:delete GROUPID`
|
|
1119
1169
|
|
|
@@ -1134,7 +1184,7 @@ DESCRIPTION
|
|
|
1134
1184
|
delete all the updates in an update group
|
|
1135
1185
|
```
|
|
1136
1186
|
|
|
1137
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1187
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1138
1188
|
|
|
1139
1189
|
## `eas update:list`
|
|
1140
1190
|
|
|
@@ -1156,7 +1206,7 @@ DESCRIPTION
|
|
|
1156
1206
|
view the recent updates
|
|
1157
1207
|
```
|
|
1158
1208
|
|
|
1159
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1209
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1160
1210
|
|
|
1161
1211
|
## `eas update:republish`
|
|
1162
1212
|
|
|
@@ -1164,12 +1214,13 @@ rollback to an existing update
|
|
|
1164
1214
|
|
|
1165
1215
|
```
|
|
1166
1216
|
USAGE
|
|
1167
|
-
$ eas update:republish [--branch <value> | --group <value>] [--message <value>] [-p
|
|
1168
|
-
--non-interactive]
|
|
1217
|
+
$ eas update:republish [--channel <value> | --branch <value> | --group <value>] [--message <value>] [-p
|
|
1218
|
+
android|ios|all] [--json --non-interactive]
|
|
1169
1219
|
|
|
1170
1220
|
FLAGS
|
|
1171
1221
|
-p, --platform=(android|ios|all) [default: all]
|
|
1172
1222
|
--branch=<value> Branch name to select an update to republish from
|
|
1223
|
+
--channel=<value> Channel name to select an update to republish from
|
|
1173
1224
|
--group=<value> Update group ID to republish
|
|
1174
1225
|
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1175
1226
|
--message=<value> Short message describing the republished update
|
|
@@ -1179,7 +1230,7 @@ DESCRIPTION
|
|
|
1179
1230
|
rollback to an existing update
|
|
1180
1231
|
```
|
|
1181
1232
|
|
|
1182
|
-
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1233
|
+
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1183
1234
|
|
|
1184
1235
|
## `eas update:view GROUPID`
|
|
1185
1236
|
|
|
@@ -1199,7 +1250,7 @@ DESCRIPTION
|
|
|
1199
1250
|
update group details
|
|
1200
1251
|
```
|
|
1201
1252
|
|
|
1202
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1253
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1203
1254
|
|
|
1204
1255
|
## `eas webhook:create`
|
|
1205
1256
|
|
|
@@ -1220,7 +1271,7 @@ DESCRIPTION
|
|
|
1220
1271
|
create a webhook
|
|
1221
1272
|
```
|
|
1222
1273
|
|
|
1223
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1274
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1224
1275
|
|
|
1225
1276
|
## `eas webhook:delete [ID]`
|
|
1226
1277
|
|
|
@@ -1240,7 +1291,7 @@ DESCRIPTION
|
|
|
1240
1291
|
delete a webhook
|
|
1241
1292
|
```
|
|
1242
1293
|
|
|
1243
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1294
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1244
1295
|
|
|
1245
1296
|
## `eas webhook:list`
|
|
1246
1297
|
|
|
@@ -1257,7 +1308,7 @@ DESCRIPTION
|
|
|
1257
1308
|
list webhooks
|
|
1258
1309
|
```
|
|
1259
1310
|
|
|
1260
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1311
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1261
1312
|
|
|
1262
1313
|
## `eas webhook:update`
|
|
1263
1314
|
|
|
@@ -1279,7 +1330,7 @@ DESCRIPTION
|
|
|
1279
1330
|
update a webhook
|
|
1280
1331
|
```
|
|
1281
1332
|
|
|
1282
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1333
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1283
1334
|
|
|
1284
1335
|
## `eas webhook:view ID`
|
|
1285
1336
|
|
|
@@ -1296,7 +1347,7 @@ DESCRIPTION
|
|
|
1296
1347
|
view a webhook
|
|
1297
1348
|
```
|
|
1298
1349
|
|
|
1299
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1350
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1300
1351
|
|
|
1301
1352
|
## `eas whoami`
|
|
1302
1353
|
|
package/build/branch/queries.js
CHANGED
|
@@ -24,7 +24,7 @@ async function selectBranchOnAppAsync(graphqlClient, { projectId, promptTitle, d
|
|
|
24
24
|
promptOptions: {
|
|
25
25
|
title: promptTitle,
|
|
26
26
|
getIdentifierForQueryItem: updateBranchFragment => updateBranchFragment.id,
|
|
27
|
-
|
|
27
|
+
makePartialChoiceObject: displayTextForListItem,
|
|
28
28
|
},
|
|
29
29
|
});
|
|
30
30
|
if (!selectedBranch) {
|
package/build/build/build.js
CHANGED
|
@@ -214,7 +214,7 @@ async function handleSingleBuildProgressAsync({ build, accountName }, { spinner
|
|
|
214
214
|
spinner.succeed('Build finished');
|
|
215
215
|
return { refetch: false };
|
|
216
216
|
case generated_1.BuildStatus.New:
|
|
217
|
-
spinner.text = `Build is waiting to enter the queue. Check your concurrency limit at ${
|
|
217
|
+
spinner.text = `Build is waiting to enter the queue. Check your concurrency limit at ${(0, log_1.link)(formatAccountSubscriptionsUrl(accountName))}.`;
|
|
218
218
|
break;
|
|
219
219
|
case generated_1.BuildStatus.InQueue: {
|
|
220
220
|
spinner.text = 'Build queued...';
|
|
@@ -228,7 +228,7 @@ async function handleSingleBuildProgressAsync({ build, accountName }, { spinner
|
|
|
228
228
|
if (build.priority !== generated_1.BuildPriority.High) {
|
|
229
229
|
log_1.default.newLine();
|
|
230
230
|
log_1.default.log('Start builds sooner in the priority queue.');
|
|
231
|
-
log_1.default.log(`Sign up for EAS Production or Enterprise at ${
|
|
231
|
+
log_1.default.log(`Sign up for EAS Production or Enterprise at ${(0, log_1.link)(formatAccountSubscriptionsUrl(accountName))}`);
|
|
232
232
|
}
|
|
233
233
|
log_1.default.newLine();
|
|
234
234
|
log_1.default.log(`Waiting in ${priorityToQueueDisplayName[build.priority]}`);
|
|
@@ -261,8 +261,8 @@ async function handleSingleBuildProgressAsync({ build, accountName }, { spinner
|
|
|
261
261
|
return { refetch: true };
|
|
262
262
|
}
|
|
263
263
|
const priorityToQueueDisplayName = {
|
|
264
|
-
[generated_1.BuildPriority.Normal]: 'queue',
|
|
265
|
-
[generated_1.BuildPriority.NormalPlus]: 'queue',
|
|
264
|
+
[generated_1.BuildPriority.Normal]: 'Free tier queue',
|
|
265
|
+
[generated_1.BuildPriority.NormalPlus]: 'Free tier queue',
|
|
266
266
|
[generated_1.BuildPriority.High]: 'priority queue',
|
|
267
267
|
};
|
|
268
268
|
const statusToDisplayName = {
|
package/build/build/queries.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExpoGraphqlClient } from '../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
2
|
import { PaginatedQueryOptions } from '../commandUtils/pagination';
|
|
3
|
-
import {
|
|
3
|
+
import { BuildFilter, BuildFragment } from '../graphql/generated';
|
|
4
4
|
export declare const BUILDS_LIMIT = 50;
|
|
5
5
|
export declare function listAndRenderBuildsOnAppAsync(graphqlClient: ExpoGraphqlClient, { projectId, projectDisplayName, filter, paginatedQueryOptions, }: {
|
|
6
6
|
projectId: string;
|
|
@@ -8,20 +8,14 @@ export declare function listAndRenderBuildsOnAppAsync(graphqlClient: ExpoGraphql
|
|
|
8
8
|
filter?: BuildFilter;
|
|
9
9
|
paginatedQueryOptions: PaginatedQueryOptions;
|
|
10
10
|
}): Promise<void>;
|
|
11
|
-
export declare function listAndSelectBuildOnAppAsync(graphqlClient: ExpoGraphqlClient, { projectId, title, filter, paginatedQueryOptions, }: {
|
|
11
|
+
export declare function listAndSelectBuildOnAppAsync(graphqlClient: ExpoGraphqlClient, { projectId, title, filter, paginatedQueryOptions, selectPromptDisabledFunction, selectPromptWarningMessage, }: {
|
|
12
12
|
projectId: string;
|
|
13
13
|
title: string;
|
|
14
14
|
filter?: BuildFilter;
|
|
15
15
|
paginatedQueryOptions: PaginatedQueryOptions;
|
|
16
|
-
}): Promise<BuildFragment | void>;
|
|
17
|
-
export declare function listAndSelectBuildsOnAppAsync(graphqlClient: ExpoGraphqlClient, selectedPlatform: AppPlatform, { projectId, projectDisplayName, filter, queryOptions, selectPromptDisabledFunction, warningMessage, }: {
|
|
18
|
-
projectId: string;
|
|
19
|
-
projectDisplayName: string;
|
|
20
|
-
filter?: BuildFilter;
|
|
21
|
-
queryOptions: PaginatedQueryOptions;
|
|
22
16
|
selectPromptDisabledFunction?: (build: BuildFragment) => boolean;
|
|
23
|
-
|
|
24
|
-
}): Promise<BuildFragment>;
|
|
17
|
+
selectPromptWarningMessage?: string;
|
|
18
|
+
}): Promise<BuildFragment | void>;
|
|
25
19
|
export declare function getLatestBuildAsync(graphqlClient: ExpoGraphqlClient, { projectId, filter, }: {
|
|
26
20
|
projectId: string;
|
|
27
21
|
filter?: BuildFilter;
|