eas-cli 3.0.0 → 3.1.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 +82 -103
- package/build/branch/queries.d.ts +2 -1
- package/build/build/ios/credentials.d.ts +3 -0
- package/build/build/ios/credentials.js +16 -1
- package/build/build/ios/graphql.d.ts +4 -1
- package/build/build/ios/graphql.js +2 -1
- package/build/build/ios/prepareJob.d.ts +2 -0
- package/build/build/ios/prepareJob.js +17 -1
- package/build/build/queries.d.ts +6 -0
- package/build/build/queries.js +25 -1
- package/build/channel/errors.d.ts +3 -0
- package/build/channel/errors.js +9 -0
- package/build/channel/queries.js +1 -1
- package/build/commands/branch/delete.js +1 -1
- package/build/commands/branch/view.js +3 -1
- package/build/commands/build/index.d.ts +1 -0
- package/build/commands/build/index.js +2 -0
- package/build/commands/build/resign.d.ts +55 -0
- package/build/commands/build/resign.js +207 -0
- package/build/commands/channel/edit.js +1 -1
- package/build/commands/update/configure.js +15 -2
- package/build/commands/update/index.d.ts +1 -0
- package/build/commands/update/index.js +22 -7
- package/build/commands/update/list.js +3 -1
- package/build/devices/queries.js +8 -4
- package/build/graphql/generated.d.ts +136 -5
- package/build/graphql/generated.js +9 -2
- package/build/graphql/mutations/BuildMutation.d.ts +5 -1
- package/build/graphql/mutations/BuildMutation.js +17 -0
- package/build/graphql/queries/ChannelQuery.js +2 -1
- package/build/update/configure.d.ts +1 -1
- package/build/update/configure.js +52 -5
- package/build/update/getBranchNameFromChannelNameAsync.d.ts +2 -0
- package/build/update/getBranchNameFromChannelNameAsync.js +45 -0
- package/build/update/queries.js +3 -1
- package/build/utils/queries.d.ts +5 -1
- package/build/utils/queries.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -70,6 +70,7 @@ eas --help COMMAND
|
|
|
70
70
|
* [`eas build:configure`](#eas-buildconfigure)
|
|
71
71
|
* [`eas build:inspect`](#eas-buildinspect)
|
|
72
72
|
* [`eas build:list`](#eas-buildlist)
|
|
73
|
+
* [`eas build:resign`](#eas-buildresign)
|
|
73
74
|
* [`eas build:run`](#eas-buildrun)
|
|
74
75
|
* [`eas build:submit`](#eas-buildsubmit)
|
|
75
76
|
* [`eas build:version:set`](#eas-buildversionset)
|
|
@@ -96,8 +97,6 @@ eas --help COMMAND
|
|
|
96
97
|
* [`eas open`](#eas-open)
|
|
97
98
|
* [`eas project:info`](#eas-projectinfo)
|
|
98
99
|
* [`eas project:init`](#eas-projectinit)
|
|
99
|
-
* [`eas run`](#eas-run)
|
|
100
|
-
* [`eas run:run`](#eas-runrun)
|
|
101
100
|
* [`eas secret:create`](#eas-secretcreate)
|
|
102
101
|
* [`eas secret:delete`](#eas-secretdelete)
|
|
103
102
|
* [`eas secret:list`](#eas-secretlist)
|
|
@@ -131,7 +130,7 @@ ALIASES
|
|
|
131
130
|
$ eas login
|
|
132
131
|
```
|
|
133
132
|
|
|
134
|
-
_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.1.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
135
134
|
|
|
136
135
|
## `eas account:logout`
|
|
137
136
|
|
|
@@ -148,7 +147,7 @@ ALIASES
|
|
|
148
147
|
$ eas logout
|
|
149
148
|
```
|
|
150
149
|
|
|
151
|
-
_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.1.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
152
151
|
|
|
153
152
|
## `eas account:view`
|
|
154
153
|
|
|
@@ -165,7 +164,7 @@ ALIASES
|
|
|
165
164
|
$ eas whoami
|
|
166
165
|
```
|
|
167
166
|
|
|
168
|
-
_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.1.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
169
168
|
|
|
170
169
|
## `eas analytics [STATUS]`
|
|
171
170
|
|
|
@@ -179,7 +178,7 @@ DESCRIPTION
|
|
|
179
178
|
display or change analytics settings
|
|
180
179
|
```
|
|
181
180
|
|
|
182
|
-
_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.1.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
183
182
|
|
|
184
183
|
## `eas autocomplete [SHELL]`
|
|
185
184
|
|
|
@@ -229,7 +228,7 @@ DESCRIPTION
|
|
|
229
228
|
create a branch
|
|
230
229
|
```
|
|
231
230
|
|
|
232
|
-
_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.1.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
233
232
|
|
|
234
233
|
## `eas branch:delete [NAME]`
|
|
235
234
|
|
|
@@ -250,7 +249,7 @@ DESCRIPTION
|
|
|
250
249
|
delete a branch
|
|
251
250
|
```
|
|
252
251
|
|
|
253
|
-
_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.1.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
254
253
|
|
|
255
254
|
## `eas branch:list`
|
|
256
255
|
|
|
@@ -270,7 +269,7 @@ DESCRIPTION
|
|
|
270
269
|
list all branches
|
|
271
270
|
```
|
|
272
271
|
|
|
273
|
-
_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.1.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
274
273
|
|
|
275
274
|
## `eas branch:rename`
|
|
276
275
|
|
|
@@ -290,7 +289,7 @@ DESCRIPTION
|
|
|
290
289
|
rename a branch
|
|
291
290
|
```
|
|
292
291
|
|
|
293
|
-
_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.1.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
294
293
|
|
|
295
294
|
## `eas branch:view [NAME]`
|
|
296
295
|
|
|
@@ -313,7 +312,7 @@ DESCRIPTION
|
|
|
313
312
|
view a branch
|
|
314
313
|
```
|
|
315
314
|
|
|
316
|
-
_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.1.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
317
316
|
|
|
318
317
|
## `eas build`
|
|
319
318
|
|
|
@@ -343,7 +342,7 @@ DESCRIPTION
|
|
|
343
342
|
start a build
|
|
344
343
|
```
|
|
345
344
|
|
|
346
|
-
_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.1.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
347
346
|
|
|
348
347
|
## `eas build:cancel [BUILD_ID]`
|
|
349
348
|
|
|
@@ -360,7 +359,7 @@ DESCRIPTION
|
|
|
360
359
|
cancel a build
|
|
361
360
|
```
|
|
362
361
|
|
|
363
|
-
_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.1.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
364
363
|
|
|
365
364
|
## `eas build:configure`
|
|
366
365
|
|
|
@@ -377,7 +376,7 @@ DESCRIPTION
|
|
|
377
376
|
configure the project to support EAS Build
|
|
378
377
|
```
|
|
379
378
|
|
|
380
|
-
_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.1.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
381
380
|
|
|
382
381
|
## `eas build:inspect`
|
|
383
382
|
|
|
@@ -412,7 +411,7 @@ DESCRIPTION
|
|
|
412
411
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
413
412
|
```
|
|
414
413
|
|
|
415
|
-
_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.1.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
416
415
|
|
|
417
416
|
## `eas build:list`
|
|
418
417
|
|
|
@@ -449,7 +448,33 @@ DESCRIPTION
|
|
|
449
448
|
list all builds for your project
|
|
450
449
|
```
|
|
451
450
|
|
|
452
|
-
_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.1.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
452
|
+
|
|
453
|
+
## `eas build:resign`
|
|
454
|
+
|
|
455
|
+
re-sign a build archive
|
|
456
|
+
|
|
457
|
+
```
|
|
458
|
+
USAGE
|
|
459
|
+
$ eas build:resign [-p android|ios] [-e <value>] [--wait] [--id <value>] [--offset <value>] [--limit <value>]
|
|
460
|
+
[--json --non-interactive]
|
|
461
|
+
|
|
462
|
+
FLAGS
|
|
463
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
464
|
+
eas.json.
|
|
465
|
+
-p, --platform=(android|ios)
|
|
466
|
+
--id=<value> ID of the build to re-sign.
|
|
467
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
468
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
469
|
+
--non-interactive Run the command in non-interactive mode.
|
|
470
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
471
|
+
--[no-]wait Wait for build(s) to complete.
|
|
472
|
+
|
|
473
|
+
DESCRIPTION
|
|
474
|
+
re-sign a build archive
|
|
475
|
+
```
|
|
476
|
+
|
|
477
|
+
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
453
478
|
|
|
454
479
|
## `eas build:run`
|
|
455
480
|
|
|
@@ -473,7 +498,7 @@ DESCRIPTION
|
|
|
473
498
|
run simulator/emulator builds from eas-cli
|
|
474
499
|
```
|
|
475
500
|
|
|
476
|
-
_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.1.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
477
502
|
|
|
478
503
|
## `eas build:submit`
|
|
479
504
|
|
|
@@ -520,7 +545,7 @@ DESCRIPTION
|
|
|
520
545
|
Update version of an app.
|
|
521
546
|
```
|
|
522
547
|
|
|
523
|
-
_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.1.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
524
549
|
|
|
525
550
|
## `eas build:version:sync`
|
|
526
551
|
|
|
@@ -539,7 +564,7 @@ DESCRIPTION
|
|
|
539
564
|
Update a version in native code with a value stored on EAS servers
|
|
540
565
|
```
|
|
541
566
|
|
|
542
|
-
_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.1.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
543
568
|
|
|
544
569
|
## `eas build:view [BUILD_ID]`
|
|
545
570
|
|
|
@@ -556,7 +581,7 @@ DESCRIPTION
|
|
|
556
581
|
view a build for your project
|
|
557
582
|
```
|
|
558
583
|
|
|
559
|
-
_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.1.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
560
585
|
|
|
561
586
|
## `eas channel:create [NAME]`
|
|
562
587
|
|
|
@@ -577,7 +602,7 @@ DESCRIPTION
|
|
|
577
602
|
create a channel
|
|
578
603
|
```
|
|
579
604
|
|
|
580
|
-
_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.1.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
581
606
|
|
|
582
607
|
## `eas channel:edit [NAME]`
|
|
583
608
|
|
|
@@ -599,7 +624,7 @@ DESCRIPTION
|
|
|
599
624
|
point a channel at a new branch
|
|
600
625
|
```
|
|
601
626
|
|
|
602
|
-
_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.1.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
603
628
|
|
|
604
629
|
## `eas channel:list`
|
|
605
630
|
|
|
@@ -619,7 +644,7 @@ DESCRIPTION
|
|
|
619
644
|
list all channels
|
|
620
645
|
```
|
|
621
646
|
|
|
622
|
-
_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.1.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
623
648
|
|
|
624
649
|
## `eas channel:view [NAME]`
|
|
625
650
|
|
|
@@ -642,7 +667,7 @@ DESCRIPTION
|
|
|
642
667
|
view a channel
|
|
643
668
|
```
|
|
644
669
|
|
|
645
|
-
_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.1.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
646
671
|
|
|
647
672
|
## `eas config`
|
|
648
673
|
|
|
@@ -661,7 +686,7 @@ DESCRIPTION
|
|
|
661
686
|
display project configuration (app.json + eas.json)
|
|
662
687
|
```
|
|
663
688
|
|
|
664
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
689
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/config.ts)_
|
|
665
690
|
|
|
666
691
|
## `eas credentials`
|
|
667
692
|
|
|
@@ -678,7 +703,7 @@ DESCRIPTION
|
|
|
678
703
|
manage credentials
|
|
679
704
|
```
|
|
680
705
|
|
|
681
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
706
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/credentials.ts)_
|
|
682
707
|
|
|
683
708
|
## `eas device:create`
|
|
684
709
|
|
|
@@ -692,7 +717,7 @@ DESCRIPTION
|
|
|
692
717
|
register new Apple Devices to use for internal distribution
|
|
693
718
|
```
|
|
694
719
|
|
|
695
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
720
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
696
721
|
|
|
697
722
|
## `eas device:delete`
|
|
698
723
|
|
|
@@ -712,7 +737,7 @@ DESCRIPTION
|
|
|
712
737
|
remove a registered device from your account
|
|
713
738
|
```
|
|
714
739
|
|
|
715
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
740
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
716
741
|
|
|
717
742
|
## `eas device:list`
|
|
718
743
|
|
|
@@ -733,7 +758,7 @@ DESCRIPTION
|
|
|
733
758
|
list all registered devices for your account
|
|
734
759
|
```
|
|
735
760
|
|
|
736
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
761
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
737
762
|
|
|
738
763
|
## `eas device:view [UDID]`
|
|
739
764
|
|
|
@@ -747,7 +772,7 @@ DESCRIPTION
|
|
|
747
772
|
view a device for your project
|
|
748
773
|
```
|
|
749
774
|
|
|
750
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
775
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
751
776
|
|
|
752
777
|
## `eas diagnostics`
|
|
753
778
|
|
|
@@ -761,7 +786,7 @@ DESCRIPTION
|
|
|
761
786
|
display environment info
|
|
762
787
|
```
|
|
763
788
|
|
|
764
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
789
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
765
790
|
|
|
766
791
|
## `eas help [COMMAND]`
|
|
767
792
|
|
|
@@ -849,7 +874,7 @@ DESCRIPTION
|
|
|
849
874
|
validate the local store configuration
|
|
850
875
|
```
|
|
851
876
|
|
|
852
|
-
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
877
|
+
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
853
878
|
|
|
854
879
|
## `eas metadata:pull`
|
|
855
880
|
|
|
@@ -866,7 +891,7 @@ DESCRIPTION
|
|
|
866
891
|
generate the local store configuration from the app stores
|
|
867
892
|
```
|
|
868
893
|
|
|
869
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
894
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
870
895
|
|
|
871
896
|
## `eas metadata:push`
|
|
872
897
|
|
|
@@ -883,7 +908,7 @@ DESCRIPTION
|
|
|
883
908
|
sync the local store configuration to the app stores
|
|
884
909
|
```
|
|
885
910
|
|
|
886
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
911
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
887
912
|
|
|
888
913
|
## `eas open`
|
|
889
914
|
|
|
@@ -897,7 +922,7 @@ DESCRIPTION
|
|
|
897
922
|
open the project page in a web browser
|
|
898
923
|
```
|
|
899
924
|
|
|
900
|
-
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
925
|
+
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/open.ts)_
|
|
901
926
|
|
|
902
927
|
## `eas project:info`
|
|
903
928
|
|
|
@@ -911,7 +936,7 @@ DESCRIPTION
|
|
|
911
936
|
information about the current project
|
|
912
937
|
```
|
|
913
938
|
|
|
914
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
939
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
915
940
|
|
|
916
941
|
## `eas project:init`
|
|
917
942
|
|
|
@@ -933,55 +958,7 @@ ALIASES
|
|
|
933
958
|
$ eas init
|
|
934
959
|
```
|
|
935
960
|
|
|
936
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
937
|
-
|
|
938
|
-
## `eas run`
|
|
939
|
-
|
|
940
|
-
run simulator build
|
|
941
|
-
|
|
942
|
-
```
|
|
943
|
-
USAGE
|
|
944
|
-
$ eas run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
|
|
945
|
-
<value>] [--limit <value>]
|
|
946
|
-
|
|
947
|
-
FLAGS
|
|
948
|
-
-p, --platform=(android|ios|all)
|
|
949
|
-
--id=<value> ID of the simulator build to run
|
|
950
|
-
--latest Run the latest simulator build for specified platform
|
|
951
|
-
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
952
|
-
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
953
|
-
--path=<value> Path to the simulator build file file
|
|
954
|
-
--url=<value> Simulator build archive url
|
|
955
|
-
|
|
956
|
-
DESCRIPTION
|
|
957
|
-
run simulator build
|
|
958
|
-
```
|
|
959
|
-
|
|
960
|
-
_See code: [src/commands/run/index.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/run/index.ts)_
|
|
961
|
-
|
|
962
|
-
## `eas run:run`
|
|
963
|
-
|
|
964
|
-
run simulator build
|
|
965
|
-
|
|
966
|
-
```
|
|
967
|
-
USAGE
|
|
968
|
-
$ eas run:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
|
|
969
|
-
<value>] [--limit <value>]
|
|
970
|
-
|
|
971
|
-
FLAGS
|
|
972
|
-
-p, --platform=(android|ios|all)
|
|
973
|
-
--id=<value> ID of the simulator build to run
|
|
974
|
-
--latest Run the latest simulator build for specified platform
|
|
975
|
-
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
976
|
-
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
977
|
-
--path=<value> Path to the simulator build file file
|
|
978
|
-
--url=<value> Simulator build archive url
|
|
979
|
-
|
|
980
|
-
DESCRIPTION
|
|
981
|
-
run simulator build
|
|
982
|
-
```
|
|
983
|
-
|
|
984
|
-
_See code: [src/commands/run/run.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/run/run.ts)_
|
|
961
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
985
962
|
|
|
986
963
|
## `eas secret:create`
|
|
987
964
|
|
|
@@ -1004,7 +981,7 @@ DESCRIPTION
|
|
|
1004
981
|
create an environment secret on the current project or owner account
|
|
1005
982
|
```
|
|
1006
983
|
|
|
1007
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
984
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1008
985
|
|
|
1009
986
|
## `eas secret:delete`
|
|
1010
987
|
|
|
@@ -1022,7 +999,7 @@ DESCRIPTION
|
|
|
1022
999
|
delete an environment secret by ID
|
|
1023
1000
|
```
|
|
1024
1001
|
|
|
1025
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1002
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1026
1003
|
|
|
1027
1004
|
## `eas secret:list`
|
|
1028
1005
|
|
|
@@ -1036,7 +1013,7 @@ DESCRIPTION
|
|
|
1036
1013
|
list environment secrets available for your current app
|
|
1037
1014
|
```
|
|
1038
1015
|
|
|
1039
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1016
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1040
1017
|
|
|
1041
1018
|
## `eas secret:push`
|
|
1042
1019
|
|
|
@@ -1056,7 +1033,7 @@ DESCRIPTION
|
|
|
1056
1033
|
read environment secrets from env file and store on the server
|
|
1057
1034
|
```
|
|
1058
1035
|
|
|
1059
|
-
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1036
|
+
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1060
1037
|
|
|
1061
1038
|
## `eas submit`
|
|
1062
1039
|
|
|
@@ -1086,7 +1063,7 @@ ALIASES
|
|
|
1086
1063
|
$ eas build:submit
|
|
1087
1064
|
```
|
|
1088
1065
|
|
|
1089
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1066
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1090
1067
|
|
|
1091
1068
|
## `eas update`
|
|
1092
1069
|
|
|
@@ -1094,13 +1071,15 @@ publish an update group
|
|
|
1094
1071
|
|
|
1095
1072
|
```
|
|
1096
1073
|
USAGE
|
|
1097
|
-
$ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value>
|
|
1098
|
-
[--group <value> | | ] [-p android|ios|all] [--auto] [--private-key-path <value>] [--json
|
|
1074
|
+
$ eas update [--branch <value>] [--channel <value>] [--message <value>] [--republish | --input-dir <value>
|
|
1075
|
+
| --skip-bundler] [--group <value> | | ] [-p android|ios|all] [--auto] [--private-key-path <value>] [--json
|
|
1076
|
+
--non-interactive]
|
|
1099
1077
|
|
|
1100
1078
|
FLAGS
|
|
1101
1079
|
-p, --platform=(android|ios|all) [default: all]
|
|
1102
1080
|
--auto Use the current git branch and commit message for the EAS branch and update message
|
|
1103
1081
|
--branch=<value> Branch to publish the update group on
|
|
1082
|
+
--channel=<value> Channel that the published update should affect
|
|
1104
1083
|
--group=<value> Update group to republish (deprecated, see republish command)
|
|
1105
1084
|
--input-dir=<value> [default: dist] Location of the bundle
|
|
1106
1085
|
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
@@ -1116,7 +1095,7 @@ DESCRIPTION
|
|
|
1116
1095
|
publish an update group
|
|
1117
1096
|
```
|
|
1118
1097
|
|
|
1119
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1098
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1120
1099
|
|
|
1121
1100
|
## `eas update:configure`
|
|
1122
1101
|
|
|
@@ -1134,7 +1113,7 @@ DESCRIPTION
|
|
|
1134
1113
|
configure the project to support EAS Update
|
|
1135
1114
|
```
|
|
1136
1115
|
|
|
1137
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1116
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1138
1117
|
|
|
1139
1118
|
## `eas update:delete GROUPID`
|
|
1140
1119
|
|
|
@@ -1155,7 +1134,7 @@ DESCRIPTION
|
|
|
1155
1134
|
delete all the updates in an update group
|
|
1156
1135
|
```
|
|
1157
1136
|
|
|
1158
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1137
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1159
1138
|
|
|
1160
1139
|
## `eas update:list`
|
|
1161
1140
|
|
|
@@ -1177,7 +1156,7 @@ DESCRIPTION
|
|
|
1177
1156
|
view the recent updates
|
|
1178
1157
|
```
|
|
1179
1158
|
|
|
1180
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1159
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1181
1160
|
|
|
1182
1161
|
## `eas update:republish`
|
|
1183
1162
|
|
|
@@ -1200,7 +1179,7 @@ DESCRIPTION
|
|
|
1200
1179
|
rollback to an existing update
|
|
1201
1180
|
```
|
|
1202
1181
|
|
|
1203
|
-
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1182
|
+
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1204
1183
|
|
|
1205
1184
|
## `eas update:view GROUPID`
|
|
1206
1185
|
|
|
@@ -1220,7 +1199,7 @@ DESCRIPTION
|
|
|
1220
1199
|
update group details
|
|
1221
1200
|
```
|
|
1222
1201
|
|
|
1223
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1202
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1224
1203
|
|
|
1225
1204
|
## `eas webhook:create`
|
|
1226
1205
|
|
|
@@ -1241,7 +1220,7 @@ DESCRIPTION
|
|
|
1241
1220
|
create a webhook
|
|
1242
1221
|
```
|
|
1243
1222
|
|
|
1244
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1223
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1245
1224
|
|
|
1246
1225
|
## `eas webhook:delete [ID]`
|
|
1247
1226
|
|
|
@@ -1261,7 +1240,7 @@ DESCRIPTION
|
|
|
1261
1240
|
delete a webhook
|
|
1262
1241
|
```
|
|
1263
1242
|
|
|
1264
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1243
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1265
1244
|
|
|
1266
1245
|
## `eas webhook:list`
|
|
1267
1246
|
|
|
@@ -1278,7 +1257,7 @@ DESCRIPTION
|
|
|
1278
1257
|
list webhooks
|
|
1279
1258
|
```
|
|
1280
1259
|
|
|
1281
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1260
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1282
1261
|
|
|
1283
1262
|
## `eas webhook:update`
|
|
1284
1263
|
|
|
@@ -1300,7 +1279,7 @@ DESCRIPTION
|
|
|
1300
1279
|
update a webhook
|
|
1301
1280
|
```
|
|
1302
1281
|
|
|
1303
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1282
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1304
1283
|
|
|
1305
1284
|
## `eas webhook:view ID`
|
|
1306
1285
|
|
|
@@ -1317,7 +1296,7 @@ DESCRIPTION
|
|
|
1317
1296
|
view a webhook
|
|
1318
1297
|
```
|
|
1319
1298
|
|
|
1320
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.
|
|
1299
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1321
1300
|
|
|
1322
1301
|
## `eas whoami`
|
|
1323
1302
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { ExpoGraphqlClient } from '../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
2
|
import { PaginatedQueryOptions } from '../commandUtils/pagination';
|
|
3
3
|
import { CreateUpdateBranchForAppMutationVariables, UpdateBranch, UpdateBranchFragment } from '../graphql/generated';
|
|
4
|
+
import { SelectPromptEntry } from '../utils/queries';
|
|
4
5
|
export declare const BRANCHES_LIMIT = 50;
|
|
5
6
|
export declare function selectBranchOnAppAsync(graphqlClient: ExpoGraphqlClient, { projectId, promptTitle, displayTextForListItem, paginatedQueryOptions, }: {
|
|
6
7
|
projectId: string;
|
|
7
|
-
displayTextForListItem: (queryItem: UpdateBranchFragment) =>
|
|
8
|
+
displayTextForListItem: (queryItem: UpdateBranchFragment) => SelectPromptEntry;
|
|
8
9
|
promptTitle: string;
|
|
9
10
|
paginatedQueryOptions: PaginatedQueryOptions;
|
|
10
11
|
}): Promise<UpdateBranchFragment>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { Platform } from '@expo/eas-build-job';
|
|
2
|
+
import { BuildProfile } from '@expo/eas-json';
|
|
3
|
+
import { CredentialsContext } from '../../credentials/context';
|
|
2
4
|
import { IosCredentials, Target } from '../../credentials/ios/types';
|
|
3
5
|
import { CredentialsResult } from '../build';
|
|
4
6
|
import { BuildContext } from '../context';
|
|
5
7
|
export declare function ensureIosCredentialsAsync(buildCtx: BuildContext<Platform.IOS>, targets: Target[]): Promise<CredentialsResult<IosCredentials> | undefined>;
|
|
8
|
+
export declare function ensureIosCredentialsForBuildResignAsync(credentialsCtx: CredentialsContext, targets: Target[], buildProfile: BuildProfile<Platform.IOS>): Promise<CredentialsResult<IosCredentials>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ensureIosCredentialsAsync = void 0;
|
|
3
|
+
exports.ensureIosCredentialsForBuildResignAsync = exports.ensureIosCredentialsAsync = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const eas_build_job_1 = require("@expo/eas-build-job");
|
|
6
6
|
const IosCredentialsProvider_1 = tslib_1.__importDefault(require("../../credentials/ios/IosCredentialsProvider"));
|
|
@@ -25,6 +25,21 @@ async function ensureIosCredentialsAsync(buildCtx, targets) {
|
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
27
|
exports.ensureIosCredentialsAsync = ensureIosCredentialsAsync;
|
|
28
|
+
async function ensureIosCredentialsForBuildResignAsync(credentialsCtx, targets, buildProfile) {
|
|
29
|
+
const provider = new IosCredentialsProvider_1.default(credentialsCtx, {
|
|
30
|
+
app: await (0, BuildCredentialsUtils_1.getAppFromContextAsync)(credentialsCtx),
|
|
31
|
+
targets,
|
|
32
|
+
distribution: 'internal',
|
|
33
|
+
enterpriseProvisioning: buildProfile.enterpriseProvisioning,
|
|
34
|
+
});
|
|
35
|
+
const { credentialsSource } = buildProfile;
|
|
36
|
+
(0, credentials_1.logCredentialsSource)(credentialsSource, eas_build_job_1.Platform.IOS);
|
|
37
|
+
return {
|
|
38
|
+
credentials: await provider.getCredentialsAsync(credentialsSource),
|
|
39
|
+
source: credentialsSource,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
exports.ensureIosCredentialsForBuildResignAsync = ensureIosCredentialsForBuildResignAsync;
|
|
28
43
|
function shouldProvideCredentials(buildCtx) {
|
|
29
44
|
return !buildCtx.buildProfile.simulator;
|
|
30
45
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import { Ios } from '@expo/eas-build-job';
|
|
2
|
-
import { IosJobInput } from '../../graphql/generated';
|
|
2
|
+
import { IosJobInput, IosJobSecretsInput } from '../../graphql/generated';
|
|
3
3
|
export declare function transformJob(job: Ios.Job): IosJobInput;
|
|
4
|
+
export declare function transformIosSecrets(secrets: {
|
|
5
|
+
buildCredentials?: Ios.BuildCredentials;
|
|
6
|
+
}): IosJobSecretsInput;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.transformJob = void 0;
|
|
3
|
+
exports.transformIosSecrets = exports.transformJob = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const nullthrows_1 = tslib_1.__importDefault(require("nullthrows"));
|
|
6
6
|
const graphql_1 = require("../graphql");
|
|
@@ -43,3 +43,4 @@ function transformIosSecrets(secrets) {
|
|
|
43
43
|
buildCredentials,
|
|
44
44
|
};
|
|
45
45
|
}
|
|
46
|
+
exports.transformIosSecrets = transformIosSecrets;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ArchiveSource, Job, Platform } from '@expo/eas-build-job';
|
|
2
2
|
import { IosCredentials } from '../../credentials/ios/types';
|
|
3
|
+
import { IosJobSecretsInput } from '../../graphql/generated';
|
|
3
4
|
import { BuildContext } from '../context';
|
|
4
5
|
interface JobData {
|
|
5
6
|
projectArchive: ArchiveSource;
|
|
@@ -7,4 +8,5 @@ interface JobData {
|
|
|
7
8
|
buildScheme: string;
|
|
8
9
|
}
|
|
9
10
|
export declare function prepareJobAsync(ctx: BuildContext<Platform.IOS>, jobData: JobData): Promise<Job>;
|
|
11
|
+
export declare function prepareCredentialsToResign(credentials: IosCredentials): IosJobSecretsInput;
|
|
10
12
|
export {};
|