eas-cli 3.13.0 → 3.13.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 -55
- package/build/build/build.js +1 -0
- package/build/build/errors.d.ts +2 -0
- package/build/build/errors.js +4 -1
- package/build/build/ios/version.js +11 -2
- package/build/credentials/ios/actions/DeviceUtils.js +1 -0
- package/build/credentials/ios/actions/SetUpAscApiKey.js +3 -3
- package/build/easMultiselect.d.ts +24 -0
- package/build/easMultiselect.js +46 -0
- package/build/graphql/generated.d.ts +11 -0
- package/build/graphql/types/Update.js +1 -1
- package/build/prompts.d.ts +2 -1
- package/build/prompts.js +5 -1
- package/build/submit/ios/AscApiKeySource.d.ts +7 -2
- package/build/submit/ios/AscApiKeySource.js +63 -1
- package/build/submit/ios/IosSubmitCommand.d.ts +0 -1
- package/build/submit/ios/IosSubmitCommand.js +4 -49
- package/build/submit/ios/IosSubmitter.d.ts +0 -2
- package/build/submit/ios/IosSubmitter.js +1 -6
- package/build/update/utils.d.ts +2 -2
- package/build/update/utils.js +4 -2
- package/build/user/User.d.ts +2 -2
- package/build/user/User.js +5 -4
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.d.ts +0 -10
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.js +0 -53
- package/build/submit/ios/CredentialsServiceSource.d.ts +0 -18
- package/build/submit/ios/CredentialsServiceSource.js +0 -62
package/README.md
CHANGED
|
@@ -133,7 +133,7 @@ ALIASES
|
|
|
133
133
|
$ eas login
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
136
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
137
137
|
|
|
138
138
|
## `eas account:logout`
|
|
139
139
|
|
|
@@ -150,7 +150,7 @@ ALIASES
|
|
|
150
150
|
$ eas logout
|
|
151
151
|
```
|
|
152
152
|
|
|
153
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
153
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
154
154
|
|
|
155
155
|
## `eas account:view`
|
|
156
156
|
|
|
@@ -167,7 +167,7 @@ ALIASES
|
|
|
167
167
|
$ eas whoami
|
|
168
168
|
```
|
|
169
169
|
|
|
170
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
170
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
171
171
|
|
|
172
172
|
## `eas analytics [STATUS]`
|
|
173
173
|
|
|
@@ -181,7 +181,7 @@ DESCRIPTION
|
|
|
181
181
|
display or change analytics settings
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
184
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
185
185
|
|
|
186
186
|
## `eas autocomplete [SHELL]`
|
|
187
187
|
|
|
@@ -231,7 +231,7 @@ DESCRIPTION
|
|
|
231
231
|
create a branch
|
|
232
232
|
```
|
|
233
233
|
|
|
234
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
234
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
235
235
|
|
|
236
236
|
## `eas branch:delete [NAME]`
|
|
237
237
|
|
|
@@ -252,7 +252,7 @@ DESCRIPTION
|
|
|
252
252
|
delete a branch
|
|
253
253
|
```
|
|
254
254
|
|
|
255
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
255
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
256
256
|
|
|
257
257
|
## `eas branch:list`
|
|
258
258
|
|
|
@@ -272,7 +272,7 @@ DESCRIPTION
|
|
|
272
272
|
list all branches
|
|
273
273
|
```
|
|
274
274
|
|
|
275
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
275
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
276
276
|
|
|
277
277
|
## `eas branch:rename`
|
|
278
278
|
|
|
@@ -292,7 +292,7 @@ DESCRIPTION
|
|
|
292
292
|
rename a branch
|
|
293
293
|
```
|
|
294
294
|
|
|
295
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
295
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
296
296
|
|
|
297
297
|
## `eas branch:view [NAME]`
|
|
298
298
|
|
|
@@ -315,7 +315,7 @@ DESCRIPTION
|
|
|
315
315
|
view a branch
|
|
316
316
|
```
|
|
317
317
|
|
|
318
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
318
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
319
319
|
|
|
320
320
|
## `eas build`
|
|
321
321
|
|
|
@@ -345,7 +345,7 @@ DESCRIPTION
|
|
|
345
345
|
start a build
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
348
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
349
349
|
|
|
350
350
|
## `eas build:cancel [BUILD_ID]`
|
|
351
351
|
|
|
@@ -362,7 +362,7 @@ DESCRIPTION
|
|
|
362
362
|
cancel a build
|
|
363
363
|
```
|
|
364
364
|
|
|
365
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
365
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
366
366
|
|
|
367
367
|
## `eas build:configure`
|
|
368
368
|
|
|
@@ -379,7 +379,7 @@ DESCRIPTION
|
|
|
379
379
|
configure the project to support EAS Build
|
|
380
380
|
```
|
|
381
381
|
|
|
382
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
382
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
383
383
|
|
|
384
384
|
## `eas build:inspect`
|
|
385
385
|
|
|
@@ -414,7 +414,7 @@ DESCRIPTION
|
|
|
414
414
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
415
415
|
```
|
|
416
416
|
|
|
417
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
417
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
418
418
|
|
|
419
419
|
## `eas build:list`
|
|
420
420
|
|
|
@@ -451,7 +451,7 @@ DESCRIPTION
|
|
|
451
451
|
list all builds for your project
|
|
452
452
|
```
|
|
453
453
|
|
|
454
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
454
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
455
455
|
|
|
456
456
|
## `eas build:resign`
|
|
457
457
|
|
|
@@ -477,7 +477,7 @@ DESCRIPTION
|
|
|
477
477
|
re-sign a build archive
|
|
478
478
|
```
|
|
479
479
|
|
|
480
|
-
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
480
|
+
_See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
481
481
|
|
|
482
482
|
## `eas build:run`
|
|
483
483
|
|
|
@@ -501,7 +501,7 @@ DESCRIPTION
|
|
|
501
501
|
run simulator/emulator builds from eas-cli
|
|
502
502
|
```
|
|
503
503
|
|
|
504
|
-
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
504
|
+
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
505
505
|
|
|
506
506
|
## `eas build:submit`
|
|
507
507
|
|
|
@@ -550,7 +550,7 @@ DESCRIPTION
|
|
|
550
550
|
get the latest version from EAS servers
|
|
551
551
|
```
|
|
552
552
|
|
|
553
|
-
_See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
553
|
+
_See code: [src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
554
554
|
|
|
555
555
|
## `eas build:version:set`
|
|
556
556
|
|
|
@@ -569,7 +569,7 @@ DESCRIPTION
|
|
|
569
569
|
update version of an app
|
|
570
570
|
```
|
|
571
571
|
|
|
572
|
-
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
572
|
+
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
573
573
|
|
|
574
574
|
## `eas build:version:sync`
|
|
575
575
|
|
|
@@ -588,7 +588,7 @@ DESCRIPTION
|
|
|
588
588
|
update a version in native code with a value stored on EAS servers
|
|
589
589
|
```
|
|
590
590
|
|
|
591
|
-
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
591
|
+
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
592
592
|
|
|
593
593
|
## `eas build:view [BUILD_ID]`
|
|
594
594
|
|
|
@@ -605,7 +605,7 @@ DESCRIPTION
|
|
|
605
605
|
view a build for your project
|
|
606
606
|
```
|
|
607
607
|
|
|
608
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
608
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
609
609
|
|
|
610
610
|
## `eas channel:create [NAME]`
|
|
611
611
|
|
|
@@ -626,7 +626,7 @@ DESCRIPTION
|
|
|
626
626
|
create a channel
|
|
627
627
|
```
|
|
628
628
|
|
|
629
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
629
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
630
630
|
|
|
631
631
|
## `eas channel:edit [NAME]`
|
|
632
632
|
|
|
@@ -648,7 +648,7 @@ DESCRIPTION
|
|
|
648
648
|
point a channel at a new branch
|
|
649
649
|
```
|
|
650
650
|
|
|
651
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
651
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
652
652
|
|
|
653
653
|
## `eas channel:list`
|
|
654
654
|
|
|
@@ -668,7 +668,7 @@ DESCRIPTION
|
|
|
668
668
|
list all channels
|
|
669
669
|
```
|
|
670
670
|
|
|
671
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
671
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
672
672
|
|
|
673
673
|
## `eas channel:rollout [CHANNEL]`
|
|
674
674
|
|
|
@@ -692,7 +692,7 @@ DESCRIPTION
|
|
|
692
692
|
Roll a new branch out on a channel incrementally.
|
|
693
693
|
```
|
|
694
694
|
|
|
695
|
-
_See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
695
|
+
_See code: [src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
696
696
|
|
|
697
697
|
## `eas channel:view [NAME]`
|
|
698
698
|
|
|
@@ -715,7 +715,7 @@ DESCRIPTION
|
|
|
715
715
|
view a channel
|
|
716
716
|
```
|
|
717
717
|
|
|
718
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
718
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
719
719
|
|
|
720
720
|
## `eas config`
|
|
721
721
|
|
|
@@ -736,7 +736,7 @@ DESCRIPTION
|
|
|
736
736
|
display project configuration (app.json + eas.json)
|
|
737
737
|
```
|
|
738
738
|
|
|
739
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
739
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/config.ts)_
|
|
740
740
|
|
|
741
741
|
## `eas credentials`
|
|
742
742
|
|
|
@@ -753,7 +753,7 @@ DESCRIPTION
|
|
|
753
753
|
manage credentials
|
|
754
754
|
```
|
|
755
755
|
|
|
756
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
756
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/credentials.ts)_
|
|
757
757
|
|
|
758
758
|
## `eas device:create`
|
|
759
759
|
|
|
@@ -767,7 +767,7 @@ DESCRIPTION
|
|
|
767
767
|
register new Apple Devices to use for internal distribution
|
|
768
768
|
```
|
|
769
769
|
|
|
770
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
770
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
771
771
|
|
|
772
772
|
## `eas device:delete`
|
|
773
773
|
|
|
@@ -787,7 +787,7 @@ DESCRIPTION
|
|
|
787
787
|
remove a registered device from your account
|
|
788
788
|
```
|
|
789
789
|
|
|
790
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
790
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
791
791
|
|
|
792
792
|
## `eas device:list`
|
|
793
793
|
|
|
@@ -808,7 +808,7 @@ DESCRIPTION
|
|
|
808
808
|
list all registered devices for your account
|
|
809
809
|
```
|
|
810
810
|
|
|
811
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
811
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
812
812
|
|
|
813
813
|
## `eas device:rename`
|
|
814
814
|
|
|
@@ -829,7 +829,7 @@ DESCRIPTION
|
|
|
829
829
|
rename a registered device
|
|
830
830
|
```
|
|
831
831
|
|
|
832
|
-
_See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
832
|
+
_See code: [src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
833
833
|
|
|
834
834
|
## `eas device:view [UDID]`
|
|
835
835
|
|
|
@@ -843,7 +843,7 @@ DESCRIPTION
|
|
|
843
843
|
view a device for your project
|
|
844
844
|
```
|
|
845
845
|
|
|
846
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
846
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
847
847
|
|
|
848
848
|
## `eas diagnostics`
|
|
849
849
|
|
|
@@ -857,7 +857,7 @@ DESCRIPTION
|
|
|
857
857
|
display environment info
|
|
858
858
|
```
|
|
859
859
|
|
|
860
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
860
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
861
861
|
|
|
862
862
|
## `eas help [COMMAND]`
|
|
863
863
|
|
|
@@ -945,7 +945,7 @@ DESCRIPTION
|
|
|
945
945
|
validate the local store configuration
|
|
946
946
|
```
|
|
947
947
|
|
|
948
|
-
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
948
|
+
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
949
949
|
|
|
950
950
|
## `eas metadata:pull`
|
|
951
951
|
|
|
@@ -962,7 +962,7 @@ DESCRIPTION
|
|
|
962
962
|
generate the local store configuration from the app stores
|
|
963
963
|
```
|
|
964
964
|
|
|
965
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
965
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
966
966
|
|
|
967
967
|
## `eas metadata:push`
|
|
968
968
|
|
|
@@ -979,7 +979,7 @@ DESCRIPTION
|
|
|
979
979
|
sync the local store configuration to the app stores
|
|
980
980
|
```
|
|
981
981
|
|
|
982
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
982
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
983
983
|
|
|
984
984
|
## `eas open`
|
|
985
985
|
|
|
@@ -993,7 +993,7 @@ DESCRIPTION
|
|
|
993
993
|
open the project page in a web browser
|
|
994
994
|
```
|
|
995
995
|
|
|
996
|
-
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
996
|
+
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/open.ts)_
|
|
997
997
|
|
|
998
998
|
## `eas project:info`
|
|
999
999
|
|
|
@@ -1007,7 +1007,7 @@ DESCRIPTION
|
|
|
1007
1007
|
information about the current project
|
|
1008
1008
|
```
|
|
1009
1009
|
|
|
1010
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1010
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1011
1011
|
|
|
1012
1012
|
## `eas project:init`
|
|
1013
1013
|
|
|
@@ -1029,7 +1029,7 @@ ALIASES
|
|
|
1029
1029
|
$ eas init
|
|
1030
1030
|
```
|
|
1031
1031
|
|
|
1032
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1032
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1033
1033
|
|
|
1034
1034
|
## `eas secret:create`
|
|
1035
1035
|
|
|
@@ -1052,7 +1052,7 @@ DESCRIPTION
|
|
|
1052
1052
|
create an environment secret on the current project or owner account
|
|
1053
1053
|
```
|
|
1054
1054
|
|
|
1055
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1055
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1056
1056
|
|
|
1057
1057
|
## `eas secret:delete`
|
|
1058
1058
|
|
|
@@ -1070,7 +1070,7 @@ DESCRIPTION
|
|
|
1070
1070
|
delete an environment secret by ID
|
|
1071
1071
|
```
|
|
1072
1072
|
|
|
1073
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1073
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1074
1074
|
|
|
1075
1075
|
## `eas secret:list`
|
|
1076
1076
|
|
|
@@ -1084,7 +1084,7 @@ DESCRIPTION
|
|
|
1084
1084
|
list environment secrets available for your current app
|
|
1085
1085
|
```
|
|
1086
1086
|
|
|
1087
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1087
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1088
1088
|
|
|
1089
1089
|
## `eas secret:push`
|
|
1090
1090
|
|
|
@@ -1104,7 +1104,7 @@ DESCRIPTION
|
|
|
1104
1104
|
read environment secrets from env file and store on the server
|
|
1105
1105
|
```
|
|
1106
1106
|
|
|
1107
|
-
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1107
|
+
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1108
1108
|
|
|
1109
1109
|
## `eas submit`
|
|
1110
1110
|
|
|
@@ -1134,7 +1134,7 @@ ALIASES
|
|
|
1134
1134
|
$ eas build:submit
|
|
1135
1135
|
```
|
|
1136
1136
|
|
|
1137
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1137
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1138
1138
|
|
|
1139
1139
|
## `eas update`
|
|
1140
1140
|
|
|
@@ -1167,7 +1167,7 @@ DESCRIPTION
|
|
|
1167
1167
|
publish an update group
|
|
1168
1168
|
```
|
|
1169
1169
|
|
|
1170
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1170
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1171
1171
|
|
|
1172
1172
|
## `eas update:configure`
|
|
1173
1173
|
|
|
@@ -1185,7 +1185,7 @@ DESCRIPTION
|
|
|
1185
1185
|
configure the project to support EAS Update
|
|
1186
1186
|
```
|
|
1187
1187
|
|
|
1188
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1188
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1189
1189
|
|
|
1190
1190
|
## `eas update:delete GROUPID`
|
|
1191
1191
|
|
|
@@ -1206,7 +1206,7 @@ DESCRIPTION
|
|
|
1206
1206
|
delete all the updates in an update group
|
|
1207
1207
|
```
|
|
1208
1208
|
|
|
1209
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1209
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1210
1210
|
|
|
1211
1211
|
## `eas update:list`
|
|
1212
1212
|
|
|
@@ -1228,7 +1228,7 @@ DESCRIPTION
|
|
|
1228
1228
|
view the recent updates
|
|
1229
1229
|
```
|
|
1230
1230
|
|
|
1231
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1231
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1232
1232
|
|
|
1233
1233
|
## `eas update:republish`
|
|
1234
1234
|
|
|
@@ -1252,7 +1252,7 @@ DESCRIPTION
|
|
|
1252
1252
|
roll back to an existing update
|
|
1253
1253
|
```
|
|
1254
1254
|
|
|
1255
|
-
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1255
|
+
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1256
1256
|
|
|
1257
1257
|
## `eas update:view GROUPID`
|
|
1258
1258
|
|
|
@@ -1272,7 +1272,7 @@ DESCRIPTION
|
|
|
1272
1272
|
update group details
|
|
1273
1273
|
```
|
|
1274
1274
|
|
|
1275
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1275
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1276
1276
|
|
|
1277
1277
|
## `eas webhook:create`
|
|
1278
1278
|
|
|
@@ -1293,7 +1293,7 @@ DESCRIPTION
|
|
|
1293
1293
|
create a webhook
|
|
1294
1294
|
```
|
|
1295
1295
|
|
|
1296
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1296
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1297
1297
|
|
|
1298
1298
|
## `eas webhook:delete [ID]`
|
|
1299
1299
|
|
|
@@ -1313,7 +1313,7 @@ DESCRIPTION
|
|
|
1313
1313
|
delete a webhook
|
|
1314
1314
|
```
|
|
1315
1315
|
|
|
1316
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1316
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1317
1317
|
|
|
1318
1318
|
## `eas webhook:list`
|
|
1319
1319
|
|
|
@@ -1331,7 +1331,7 @@ DESCRIPTION
|
|
|
1331
1331
|
list webhooks
|
|
1332
1332
|
```
|
|
1333
1333
|
|
|
1334
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1334
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1335
1335
|
|
|
1336
1336
|
## `eas webhook:update`
|
|
1337
1337
|
|
|
@@ -1353,7 +1353,7 @@ DESCRIPTION
|
|
|
1353
1353
|
update a webhook
|
|
1354
1354
|
```
|
|
1355
1355
|
|
|
1356
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1356
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1357
1357
|
|
|
1358
1358
|
## `eas webhook:view ID`
|
|
1359
1359
|
|
|
@@ -1370,7 +1370,7 @@ DESCRIPTION
|
|
|
1370
1370
|
view a webhook
|
|
1371
1371
|
```
|
|
1372
1372
|
|
|
1373
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.13.
|
|
1373
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.13.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1374
1374
|
|
|
1375
1375
|
## `eas whoami`
|
|
1376
1376
|
|
package/build/build/build.js
CHANGED
|
@@ -114,6 +114,7 @@ const SERVER_SIDE_DEFINED_ERRORS = {
|
|
|
114
114
|
EAS_BUILD_FREE_TIER_DISABLED: errors_1.EasBuildFreeTierDisabledError,
|
|
115
115
|
EAS_BUILD_FREE_TIER_DISABLED_IOS: errors_1.EasBuildFreeTierDisabledIOSError,
|
|
116
116
|
EAS_BUILD_FREE_TIER_DISABLED_ANDROID: errors_1.EasBuildFreeTierDisabledAndroidError,
|
|
117
|
+
EAS_BUILD_RESOURCE_CLASS_NOT_AVAILABLE_IN_FREE_TIER: errors_1.EasBuildResourceClassNotAvailableInFreeTierError,
|
|
117
118
|
VALIDATION_ERROR: errors_1.RequestValidationError,
|
|
118
119
|
};
|
|
119
120
|
function handleBuildRequestError(error, platform) {
|
package/build/build/errors.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export declare class EasBuildFreeTierDisabledIOSError extends EasCommandError {
|
|
|
7
7
|
}
|
|
8
8
|
export declare class EasBuildFreeTierDisabledAndroidError extends EasCommandError {
|
|
9
9
|
}
|
|
10
|
+
export declare class EasBuildResourceClassNotAvailableInFreeTierError extends EasCommandError {
|
|
11
|
+
}
|
|
10
12
|
export declare class RequestValidationError extends EasCommandError {
|
|
11
13
|
}
|
|
12
14
|
export declare class EasBuildDownForMaintenanceError extends EasCommandError {
|
package/build/build/errors.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EasBuildTooManyPendingBuildsError = exports.EasBuildDownForMaintenanceError = exports.RequestValidationError = exports.EasBuildFreeTierDisabledAndroidError = exports.EasBuildFreeTierDisabledIOSError = exports.EasBuildFreeTierDisabledError = exports.TurtleDeprecatedJobFormatError = void 0;
|
|
3
|
+
exports.EasBuildTooManyPendingBuildsError = exports.EasBuildDownForMaintenanceError = exports.RequestValidationError = exports.EasBuildResourceClassNotAvailableInFreeTierError = exports.EasBuildFreeTierDisabledAndroidError = exports.EasBuildFreeTierDisabledIOSError = exports.EasBuildFreeTierDisabledError = exports.TurtleDeprecatedJobFormatError = void 0;
|
|
4
4
|
const errors_1 = require("../commandUtils/errors");
|
|
5
5
|
class TurtleDeprecatedJobFormatError extends errors_1.EasCommandError {
|
|
6
6
|
}
|
|
@@ -14,6 +14,9 @@ exports.EasBuildFreeTierDisabledIOSError = EasBuildFreeTierDisabledIOSError;
|
|
|
14
14
|
class EasBuildFreeTierDisabledAndroidError extends errors_1.EasCommandError {
|
|
15
15
|
}
|
|
16
16
|
exports.EasBuildFreeTierDisabledAndroidError = EasBuildFreeTierDisabledAndroidError;
|
|
17
|
+
class EasBuildResourceClassNotAvailableInFreeTierError extends errors_1.EasCommandError {
|
|
18
|
+
}
|
|
19
|
+
exports.EasBuildResourceClassNotAvailableInFreeTierError = EasBuildResourceClassNotAvailableInFreeTierError;
|
|
17
20
|
class RequestValidationError extends errors_1.EasCommandError {
|
|
18
21
|
}
|
|
19
22
|
exports.RequestValidationError = RequestValidationError;
|
|
@@ -19,6 +19,7 @@ const uniqBy_1 = tslib_1.__importDefault(require("../../utils/expodash/uniqBy"))
|
|
|
19
19
|
const plist_1 = require("../../utils/plist");
|
|
20
20
|
const appJson_1 = require("../utils/appJson");
|
|
21
21
|
const version_1 = require("../utils/version");
|
|
22
|
+
const SHORT_VERSION_REGEX = /^\d+.\d+.\d+$/;
|
|
22
23
|
var BumpStrategy;
|
|
23
24
|
(function (BumpStrategy) {
|
|
24
25
|
BumpStrategy[BumpStrategy["APP_VERSION"] = 0] = "APP_VERSION";
|
|
@@ -75,14 +76,22 @@ async function bumpVersionInAppJsonAsync({ bumpStrategy, projectDir, exp, }) {
|
|
|
75
76
|
}
|
|
76
77
|
}
|
|
77
78
|
exports.bumpVersionInAppJsonAsync = bumpVersionInAppJsonAsync;
|
|
79
|
+
function validateShortVersion(shortVersion) {
|
|
80
|
+
if (shortVersion && !SHORT_VERSION_REGEX.test(shortVersion)) {
|
|
81
|
+
throw new Error(`CFBundleShortVersionString (version field in app.json/app.config.js) must be a period-separated list of three non-negative integers. Current value: ${shortVersion}`);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
78
84
|
async function readShortVersionAsync(projectDir, exp, buildSettings) {
|
|
79
85
|
const workflow = await (0, workflow_1.resolveWorkflowAsync)(projectDir, eas_build_job_1.Platform.IOS);
|
|
80
86
|
if (workflow === eas_build_job_1.Workflow.GENERIC) {
|
|
81
87
|
const infoPlist = await readInfoPlistAsync(projectDir, buildSettings);
|
|
82
|
-
|
|
83
|
-
evaluateTemplateString(infoPlist.CFBundleShortVersionString, buildSettings)
|
|
88
|
+
const shortVersion = infoPlist.CFBundleShortVersionString &&
|
|
89
|
+
evaluateTemplateString(infoPlist.CFBundleShortVersionString, buildSettings);
|
|
90
|
+
validateShortVersion(shortVersion);
|
|
91
|
+
return shortVersion;
|
|
84
92
|
}
|
|
85
93
|
else {
|
|
94
|
+
validateShortVersion(exp.version);
|
|
86
95
|
return exp.version;
|
|
87
96
|
}
|
|
88
97
|
}
|
|
@@ -10,6 +10,7 @@ async function chooseDevicesAsync(allDevices, preselectedDeviceIdentifiers = [])
|
|
|
10
10
|
const { devices } = await (0, prompts_1.promptAsync)({
|
|
11
11
|
type: 'multiselect',
|
|
12
12
|
name: 'devices',
|
|
13
|
+
selectionFormat: '<num> devices selected',
|
|
13
14
|
message: 'Select devices for the ad hoc build:',
|
|
14
15
|
hint: '- Space to select. Return to submit',
|
|
15
16
|
choices: allDevices.map(device => ({
|
|
@@ -22,10 +22,10 @@ class SetUpAscApiKey {
|
|
|
22
22
|
this.purpose = purpose;
|
|
23
23
|
this.choices = [
|
|
24
24
|
{
|
|
25
|
-
title: '[Choose an existing
|
|
25
|
+
title: '[Choose an existing key]',
|
|
26
26
|
value: SetupAscApiKeyChoice.USE_EXISTING,
|
|
27
27
|
},
|
|
28
|
-
{ title: '[Add a new
|
|
28
|
+
{ title: '[Add a new key]', value: SetupAscApiKeyChoice.GENERATE },
|
|
29
29
|
];
|
|
30
30
|
}
|
|
31
31
|
async runAsync(ctx) {
|
|
@@ -91,7 +91,7 @@ class SetUpAscApiKey {
|
|
|
91
91
|
const result = await (0, prompts_1.promptAsync)({
|
|
92
92
|
type: 'select',
|
|
93
93
|
name: 'choice',
|
|
94
|
-
message: 'Select
|
|
94
|
+
message: 'Select the App Store Connect Api Key to use for your project:',
|
|
95
95
|
choices,
|
|
96
96
|
});
|
|
97
97
|
choice = result.choice;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Choice, PromptObject } from 'prompts';
|
|
2
|
+
import { MultiselectPrompt } from 'prompts/lib/elements';
|
|
3
|
+
export type Question<T extends string = string> = PromptObject<T> & {
|
|
4
|
+
selectionFormat?: string;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* Customized multiselect prompt.
|
|
8
|
+
*
|
|
9
|
+
* Additional parameters:
|
|
10
|
+
*
|
|
11
|
+
* @param selectionFormat
|
|
12
|
+
* String indicating number of selected options. Should contain `<num>` substring.
|
|
13
|
+
*
|
|
14
|
+
* Example:
|
|
15
|
+
* 'Selected <num> devices'
|
|
16
|
+
*
|
|
17
|
+
* Short format is used when more than one option is selected.
|
|
18
|
+
*
|
|
19
|
+
**/
|
|
20
|
+
export default class EasMultiselect extends MultiselectPrompt {
|
|
21
|
+
constructor(opts: Question);
|
|
22
|
+
renderDoneOrInstructions(): string;
|
|
23
|
+
}
|
|
24
|
+
export declare const easMultiselect: (args: Question) => Promise<Choice[]>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.easMultiselect = void 0;
|
|
4
|
+
const elements_1 = require("prompts/lib/elements");
|
|
5
|
+
const noop = () => { };
|
|
6
|
+
/**
|
|
7
|
+
* Customized multiselect prompt.
|
|
8
|
+
*
|
|
9
|
+
* Additional parameters:
|
|
10
|
+
*
|
|
11
|
+
* @param selectionFormat
|
|
12
|
+
* String indicating number of selected options. Should contain `<num>` substring.
|
|
13
|
+
*
|
|
14
|
+
* Example:
|
|
15
|
+
* 'Selected <num> devices'
|
|
16
|
+
*
|
|
17
|
+
* Short format is used when more than one option is selected.
|
|
18
|
+
*
|
|
19
|
+
**/
|
|
20
|
+
class EasMultiselect extends elements_1.MultiselectPrompt {
|
|
21
|
+
constructor(opts) {
|
|
22
|
+
super(opts);
|
|
23
|
+
this.selectionFormat = opts.selectionFormat;
|
|
24
|
+
}
|
|
25
|
+
renderDoneOrInstructions() {
|
|
26
|
+
if (this.done && this.selectionFormat && this.value) {
|
|
27
|
+
const selectedOptionsCount = this.value.filter(e => e.selected).length;
|
|
28
|
+
if (selectedOptionsCount > 1) {
|
|
29
|
+
return this.selectionFormat.replace('<num>', selectedOptionsCount.toString());
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
return super.renderDoneOrInstructions();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.default = EasMultiselect;
|
|
36
|
+
const easMultiselect = (args) => {
|
|
37
|
+
const toSelected = (items) => items.filter(item => item.selected).map(item => item.value);
|
|
38
|
+
return new Promise((res, rej) => {
|
|
39
|
+
const p = new EasMultiselect(args);
|
|
40
|
+
const onAbort = toSelected || noop;
|
|
41
|
+
const onSubmit = toSelected || noop;
|
|
42
|
+
p.on('submit', x => res(onSubmit(x)));
|
|
43
|
+
p.on('abort', x => rej(onAbort(x)));
|
|
44
|
+
});
|
|
45
|
+
};
|
|
46
|
+
exports.easMultiselect = easMultiselect;
|