eas-cli 9.1.0 → 9.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 +96 -84
- package/build/build/android/prepareJob.js +11 -1
- package/build/build/build.js +9 -11
- package/build/build/ios/prepareJob.js +11 -1
- package/build/build/local.js +1 -1
- package/build/build/utils/formatBuild.js +4 -0
- package/build/build/utils/repository.js +11 -30
- package/build/commandUtils/EasCommand.js +4 -1
- package/build/commands/build/list.d.ts +7 -7
- package/build/commands/build/list.js +42 -29
- package/build/commands/build/resign.d.ts +8 -4
- package/build/commands/build/resign.js +21 -6
- package/build/commands/project/onboarding.js +5 -0
- package/build/submit/ArchiveSource.js +4 -6
- package/build/uploads.d.ts +1 -1
- package/build/uploads.js +1 -1
- package/oclif.manifest.json +71 -28
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ ALIASES
|
|
|
143
143
|
$ eas login
|
|
144
144
|
```
|
|
145
145
|
|
|
146
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
146
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
147
147
|
|
|
148
148
|
## `eas account:logout`
|
|
149
149
|
|
|
@@ -160,7 +160,7 @@ ALIASES
|
|
|
160
160
|
$ eas logout
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
163
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
164
164
|
|
|
165
165
|
## `eas account:view`
|
|
166
166
|
|
|
@@ -177,7 +177,7 @@ ALIASES
|
|
|
177
177
|
$ eas whoami
|
|
178
178
|
```
|
|
179
179
|
|
|
180
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
180
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
181
181
|
|
|
182
182
|
## `eas analytics [STATUS]`
|
|
183
183
|
|
|
@@ -191,7 +191,7 @@ DESCRIPTION
|
|
|
191
191
|
display or change analytics settings
|
|
192
192
|
```
|
|
193
193
|
|
|
194
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
194
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
195
195
|
|
|
196
196
|
## `eas autocomplete [SHELL]`
|
|
197
197
|
|
|
@@ -243,7 +243,7 @@ DESCRIPTION
|
|
|
243
243
|
create a branch
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
246
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
247
247
|
|
|
248
248
|
## `eas branch:delete [NAME]`
|
|
249
249
|
|
|
@@ -264,7 +264,7 @@ DESCRIPTION
|
|
|
264
264
|
delete a branch
|
|
265
265
|
```
|
|
266
266
|
|
|
267
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
267
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
268
268
|
|
|
269
269
|
## `eas branch:list`
|
|
270
270
|
|
|
@@ -284,7 +284,7 @@ DESCRIPTION
|
|
|
284
284
|
list all branches
|
|
285
285
|
```
|
|
286
286
|
|
|
287
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
287
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
288
288
|
|
|
289
289
|
## `eas branch:rename`
|
|
290
290
|
|
|
@@ -304,7 +304,7 @@ DESCRIPTION
|
|
|
304
304
|
rename a branch
|
|
305
305
|
```
|
|
306
306
|
|
|
307
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
307
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
308
308
|
|
|
309
309
|
## `eas branch:view [NAME]`
|
|
310
310
|
|
|
@@ -327,7 +327,7 @@ DESCRIPTION
|
|
|
327
327
|
view a branch
|
|
328
328
|
```
|
|
329
329
|
|
|
330
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
330
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
331
331
|
|
|
332
332
|
## `eas build`
|
|
333
333
|
|
|
@@ -364,7 +364,7 @@ DESCRIPTION
|
|
|
364
364
|
start a build
|
|
365
365
|
```
|
|
366
366
|
|
|
367
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
367
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
368
368
|
|
|
369
369
|
## `eas build:cancel [BUILD_ID]`
|
|
370
370
|
|
|
@@ -383,7 +383,7 @@ DESCRIPTION
|
|
|
383
383
|
cancel a build
|
|
384
384
|
```
|
|
385
385
|
|
|
386
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
386
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
387
387
|
|
|
388
388
|
## `eas build:configure`
|
|
389
389
|
|
|
@@ -400,7 +400,7 @@ DESCRIPTION
|
|
|
400
400
|
configure the project to support EAS Build
|
|
401
401
|
```
|
|
402
402
|
|
|
403
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
403
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
404
404
|
|
|
405
405
|
## `eas build:delete [BUILD_ID]`
|
|
406
406
|
|
|
@@ -419,7 +419,7 @@ DESCRIPTION
|
|
|
419
419
|
delete a build
|
|
420
420
|
```
|
|
421
421
|
|
|
422
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
422
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
423
423
|
|
|
424
424
|
## `eas build:inspect`
|
|
425
425
|
|
|
@@ -454,7 +454,7 @@ DESCRIPTION
|
|
|
454
454
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
455
455
|
```
|
|
456
456
|
|
|
457
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
457
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
458
458
|
|
|
459
459
|
## `eas build:list`
|
|
460
460
|
|
|
@@ -462,20 +462,27 @@ list all builds for your project
|
|
|
462
462
|
|
|
463
463
|
```
|
|
464
464
|
USAGE
|
|
465
|
-
$ eas build:list [
|
|
465
|
+
$ eas build:list [-p android|ios|all] [--status
|
|
466
466
|
new|in-queue|in-progress|pending-cancel|errored|finished|canceled] [--distribution store|internal|simulator]
|
|
467
|
-
[--channel <value>] [--
|
|
468
|
-
<value>] [--
|
|
469
|
-
|
|
467
|
+
[--channel <value>] [--app-version <value>] [--app-build-version <value>] [--sdk-version <value>] [--runtime-version
|
|
468
|
+
<value>] [--app-identifier <value>] [-e <value>] [--git-commit-hash <value>] [--offset <value>] [--limit <value>]
|
|
469
|
+
[--json --non-interactive] [--simulator]
|
|
470
470
|
|
|
471
471
|
FLAGS
|
|
472
|
-
--
|
|
473
|
-
|
|
474
|
-
--
|
|
475
|
-
--
|
|
472
|
+
-e, --build-profile=<value> Filter only builds created with the
|
|
473
|
+
specified build profile
|
|
474
|
+
-p, --platform=(android|ios|all)
|
|
475
|
+
--app-build-version=<value> Filter only builds created with the
|
|
476
|
+
specified app build version
|
|
477
|
+
--app-identifier=<value> Filter only builds created with the
|
|
478
|
+
specified app identifier
|
|
479
|
+
--app-version=<value> Filter only builds created with the
|
|
480
|
+
specified main app version
|
|
476
481
|
--channel=<value>
|
|
477
|
-
--distribution=(store|internal|simulator)
|
|
478
|
-
|
|
482
|
+
--distribution=(store|internal|simulator) Filter only builds with the specified
|
|
483
|
+
distribution type
|
|
484
|
+
--git-commit-hash=<value> Filter only builds created with the
|
|
485
|
+
specified git commit hash
|
|
479
486
|
--json Enable JSON output, non-JSON messages
|
|
480
487
|
will be printed to stderr.
|
|
481
488
|
--limit=<value> The number of items to fetch each query.
|
|
@@ -483,19 +490,21 @@ FLAGS
|
|
|
483
490
|
--non-interactive Run the command in non-interactive mode.
|
|
484
491
|
--offset=<value> Start queries from specified index. Use
|
|
485
492
|
for paginating results. Defaults to 0.
|
|
486
|
-
--
|
|
487
|
-
|
|
488
|
-
--
|
|
493
|
+
--runtime-version=<value> Filter only builds created with the
|
|
494
|
+
specified runtime version
|
|
495
|
+
--sdk-version=<value> Filter only builds created with the
|
|
496
|
+
specified Expo SDK version
|
|
489
497
|
--simulator Filter only iOS simulator builds. Can
|
|
490
498
|
only be used with --platform flag set to
|
|
491
499
|
"ios"
|
|
492
|
-
--status=(new|in-queue|in-progress|pending-cancel|errored|finished|canceled)
|
|
500
|
+
--status=(new|in-queue|in-progress|pending-cancel|errored|finished|canceled) Filter only builds with the specified
|
|
501
|
+
status
|
|
493
502
|
|
|
494
503
|
DESCRIPTION
|
|
495
504
|
list all builds for your project
|
|
496
505
|
```
|
|
497
506
|
|
|
498
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
507
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
499
508
|
|
|
500
509
|
## `eas build:resign`
|
|
501
510
|
|
|
@@ -503,25 +512,28 @@ re-sign a build archive
|
|
|
503
512
|
|
|
504
513
|
```
|
|
505
514
|
USAGE
|
|
506
|
-
$ eas build:resign [-p android|ios] [-e <value>] [--
|
|
507
|
-
[--json --non-interactive]
|
|
515
|
+
$ eas build:resign [-p android|ios] [-e <value>] [--source-profile <value>] [--wait] [--id <value>] [--offset
|
|
516
|
+
<value>] [--limit <value>] [--json --non-interactive]
|
|
508
517
|
|
|
509
518
|
FLAGS
|
|
510
|
-
-e, --profile=PROFILE_NAME
|
|
511
|
-
|
|
519
|
+
-e, --target-profile=PROFILE_NAME Name of the target build profile from eas.json. Credentials and environment
|
|
520
|
+
variables from this profile will be used when re-signing. Defaults to "production"
|
|
521
|
+
if defined in eas.json.
|
|
512
522
|
-p, --platform=(android|ios)
|
|
513
|
-
--id=<value>
|
|
514
|
-
--json
|
|
515
|
-
--limit=<value>
|
|
516
|
-
--non-interactive
|
|
517
|
-
--offset=<value>
|
|
518
|
-
--
|
|
523
|
+
--id=<value> ID of the build to re-sign.
|
|
524
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
525
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
526
|
+
--non-interactive Run the command in non-interactive mode.
|
|
527
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
528
|
+
--source-profile=PROFILE_NAME Name of the source build profile from eas.json. Used to filter builds eligible for
|
|
529
|
+
re-signing.
|
|
530
|
+
--[no-]wait Wait for build(s) to complete.
|
|
519
531
|
|
|
520
532
|
DESCRIPTION
|
|
521
533
|
re-sign a build archive
|
|
522
534
|
```
|
|
523
535
|
|
|
524
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
536
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
525
537
|
|
|
526
538
|
## `eas build:run`
|
|
527
539
|
|
|
@@ -547,7 +559,7 @@ DESCRIPTION
|
|
|
547
559
|
run simulator/emulator builds from eas-cli
|
|
548
560
|
```
|
|
549
561
|
|
|
550
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
562
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
551
563
|
|
|
552
564
|
## `eas build:submit`
|
|
553
565
|
|
|
@@ -597,7 +609,7 @@ DESCRIPTION
|
|
|
597
609
|
get the latest version from EAS servers
|
|
598
610
|
```
|
|
599
611
|
|
|
600
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
612
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
601
613
|
|
|
602
614
|
## `eas build:version:set`
|
|
603
615
|
|
|
@@ -616,7 +628,7 @@ DESCRIPTION
|
|
|
616
628
|
update version of an app
|
|
617
629
|
```
|
|
618
630
|
|
|
619
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
631
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
620
632
|
|
|
621
633
|
## `eas build:version:sync`
|
|
622
634
|
|
|
@@ -635,7 +647,7 @@ DESCRIPTION
|
|
|
635
647
|
update a version in native code with a value stored on EAS servers
|
|
636
648
|
```
|
|
637
649
|
|
|
638
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
650
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
639
651
|
|
|
640
652
|
## `eas build:view [BUILD_ID]`
|
|
641
653
|
|
|
@@ -652,7 +664,7 @@ DESCRIPTION
|
|
|
652
664
|
view a build for your project
|
|
653
665
|
```
|
|
654
666
|
|
|
655
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
667
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
656
668
|
|
|
657
669
|
## `eas channel:create [NAME]`
|
|
658
670
|
|
|
@@ -673,7 +685,7 @@ DESCRIPTION
|
|
|
673
685
|
create a channel
|
|
674
686
|
```
|
|
675
687
|
|
|
676
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
688
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
677
689
|
|
|
678
690
|
## `eas channel:edit [NAME]`
|
|
679
691
|
|
|
@@ -695,7 +707,7 @@ DESCRIPTION
|
|
|
695
707
|
point a channel at a new branch
|
|
696
708
|
```
|
|
697
709
|
|
|
698
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
710
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
699
711
|
|
|
700
712
|
## `eas channel:list`
|
|
701
713
|
|
|
@@ -715,7 +727,7 @@ DESCRIPTION
|
|
|
715
727
|
list all channels
|
|
716
728
|
```
|
|
717
729
|
|
|
718
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
730
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
719
731
|
|
|
720
732
|
## `eas channel:rollout [CHANNEL]`
|
|
721
733
|
|
|
@@ -747,7 +759,7 @@ DESCRIPTION
|
|
|
747
759
|
Roll a new branch out on a channel incrementally.
|
|
748
760
|
```
|
|
749
761
|
|
|
750
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
762
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
751
763
|
|
|
752
764
|
## `eas channel:view [NAME]`
|
|
753
765
|
|
|
@@ -770,7 +782,7 @@ DESCRIPTION
|
|
|
770
782
|
view a channel
|
|
771
783
|
```
|
|
772
784
|
|
|
773
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
785
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
774
786
|
|
|
775
787
|
## `eas config`
|
|
776
788
|
|
|
@@ -791,7 +803,7 @@ DESCRIPTION
|
|
|
791
803
|
display project configuration (app.json + eas.json)
|
|
792
804
|
```
|
|
793
805
|
|
|
794
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
806
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/config.ts)_
|
|
795
807
|
|
|
796
808
|
## `eas credentials`
|
|
797
809
|
|
|
@@ -808,7 +820,7 @@ DESCRIPTION
|
|
|
808
820
|
manage credentials
|
|
809
821
|
```
|
|
810
822
|
|
|
811
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
823
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
812
824
|
|
|
813
825
|
## `eas credentials:configure-build`
|
|
814
826
|
|
|
@@ -826,7 +838,7 @@ DESCRIPTION
|
|
|
826
838
|
Set up credentials for building your project.
|
|
827
839
|
```
|
|
828
840
|
|
|
829
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
841
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
830
842
|
|
|
831
843
|
## `eas device:create`
|
|
832
844
|
|
|
@@ -840,7 +852,7 @@ DESCRIPTION
|
|
|
840
852
|
register new Apple Devices to use for internal distribution
|
|
841
853
|
```
|
|
842
854
|
|
|
843
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
855
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
844
856
|
|
|
845
857
|
## `eas device:delete`
|
|
846
858
|
|
|
@@ -860,7 +872,7 @@ DESCRIPTION
|
|
|
860
872
|
remove a registered device from your account
|
|
861
873
|
```
|
|
862
874
|
|
|
863
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
875
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
864
876
|
|
|
865
877
|
## `eas device:list`
|
|
866
878
|
|
|
@@ -881,7 +893,7 @@ DESCRIPTION
|
|
|
881
893
|
list all registered devices for your account
|
|
882
894
|
```
|
|
883
895
|
|
|
884
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
896
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
885
897
|
|
|
886
898
|
## `eas device:rename`
|
|
887
899
|
|
|
@@ -902,7 +914,7 @@ DESCRIPTION
|
|
|
902
914
|
rename a registered device
|
|
903
915
|
```
|
|
904
916
|
|
|
905
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
917
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
906
918
|
|
|
907
919
|
## `eas device:view [UDID]`
|
|
908
920
|
|
|
@@ -916,7 +928,7 @@ DESCRIPTION
|
|
|
916
928
|
view a device for your project
|
|
917
929
|
```
|
|
918
930
|
|
|
919
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
931
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
920
932
|
|
|
921
933
|
## `eas diagnostics`
|
|
922
934
|
|
|
@@ -930,7 +942,7 @@ DESCRIPTION
|
|
|
930
942
|
display environment info
|
|
931
943
|
```
|
|
932
944
|
|
|
933
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
945
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
934
946
|
|
|
935
947
|
## `eas help [COMMAND]`
|
|
936
948
|
|
|
@@ -1037,7 +1049,7 @@ DESCRIPTION
|
|
|
1037
1049
|
validate the local store configuration
|
|
1038
1050
|
```
|
|
1039
1051
|
|
|
1040
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1052
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1041
1053
|
|
|
1042
1054
|
## `eas metadata:pull`
|
|
1043
1055
|
|
|
@@ -1054,7 +1066,7 @@ DESCRIPTION
|
|
|
1054
1066
|
generate the local store configuration from the app stores
|
|
1055
1067
|
```
|
|
1056
1068
|
|
|
1057
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1069
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1058
1070
|
|
|
1059
1071
|
## `eas metadata:push`
|
|
1060
1072
|
|
|
@@ -1071,7 +1083,7 @@ DESCRIPTION
|
|
|
1071
1083
|
sync the local store configuration to the app stores
|
|
1072
1084
|
```
|
|
1073
1085
|
|
|
1074
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1086
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1075
1087
|
|
|
1076
1088
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1077
1089
|
|
|
@@ -1101,7 +1113,7 @@ DESCRIPTION
|
|
|
1101
1113
|
open the project page in a web browser
|
|
1102
1114
|
```
|
|
1103
1115
|
|
|
1104
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1116
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/open.ts)_
|
|
1105
1117
|
|
|
1106
1118
|
## `eas project:info`
|
|
1107
1119
|
|
|
@@ -1115,7 +1127,7 @@ DESCRIPTION
|
|
|
1115
1127
|
information about the current project
|
|
1116
1128
|
```
|
|
1117
1129
|
|
|
1118
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1130
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1119
1131
|
|
|
1120
1132
|
## `eas project:init`
|
|
1121
1133
|
|
|
@@ -1137,7 +1149,7 @@ ALIASES
|
|
|
1137
1149
|
$ eas init
|
|
1138
1150
|
```
|
|
1139
1151
|
|
|
1140
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1152
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1141
1153
|
|
|
1142
1154
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1143
1155
|
|
|
@@ -1155,7 +1167,7 @@ ALIASES
|
|
|
1155
1167
|
$ eas onboarding
|
|
1156
1168
|
```
|
|
1157
1169
|
|
|
1158
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1170
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1159
1171
|
|
|
1160
1172
|
## `eas secret:create`
|
|
1161
1173
|
|
|
@@ -1178,7 +1190,7 @@ DESCRIPTION
|
|
|
1178
1190
|
create an environment secret on the current project or owner account
|
|
1179
1191
|
```
|
|
1180
1192
|
|
|
1181
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1193
|
+
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1182
1194
|
|
|
1183
1195
|
## `eas secret:delete`
|
|
1184
1196
|
|
|
@@ -1196,7 +1208,7 @@ DESCRIPTION
|
|
|
1196
1208
|
delete an environment secret by ID
|
|
1197
1209
|
```
|
|
1198
1210
|
|
|
1199
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1211
|
+
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1200
1212
|
|
|
1201
1213
|
## `eas secret:list`
|
|
1202
1214
|
|
|
@@ -1210,7 +1222,7 @@ DESCRIPTION
|
|
|
1210
1222
|
list environment secrets available for your current app
|
|
1211
1223
|
```
|
|
1212
1224
|
|
|
1213
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1225
|
+
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1214
1226
|
|
|
1215
1227
|
## `eas secret:push`
|
|
1216
1228
|
|
|
@@ -1230,7 +1242,7 @@ DESCRIPTION
|
|
|
1230
1242
|
read environment secrets from env file and store on the server
|
|
1231
1243
|
```
|
|
1232
1244
|
|
|
1233
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1245
|
+
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1234
1246
|
|
|
1235
1247
|
## `eas submit`
|
|
1236
1248
|
|
|
@@ -1261,7 +1273,7 @@ ALIASES
|
|
|
1261
1273
|
$ eas build:submit
|
|
1262
1274
|
```
|
|
1263
1275
|
|
|
1264
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1276
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1265
1277
|
|
|
1266
1278
|
## `eas update`
|
|
1267
1279
|
|
|
@@ -1294,7 +1306,7 @@ DESCRIPTION
|
|
|
1294
1306
|
publish an update group
|
|
1295
1307
|
```
|
|
1296
1308
|
|
|
1297
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1309
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1298
1310
|
|
|
1299
1311
|
## `eas update:configure`
|
|
1300
1312
|
|
|
@@ -1312,7 +1324,7 @@ DESCRIPTION
|
|
|
1312
1324
|
configure the project to support EAS Update
|
|
1313
1325
|
```
|
|
1314
1326
|
|
|
1315
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1327
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1316
1328
|
|
|
1317
1329
|
## `eas update:delete GROUPID`
|
|
1318
1330
|
|
|
@@ -1333,7 +1345,7 @@ DESCRIPTION
|
|
|
1333
1345
|
delete all the updates in an update group
|
|
1334
1346
|
```
|
|
1335
1347
|
|
|
1336
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1348
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1337
1349
|
|
|
1338
1350
|
## `eas update:list`
|
|
1339
1351
|
|
|
@@ -1355,7 +1367,7 @@ DESCRIPTION
|
|
|
1355
1367
|
view the recent updates
|
|
1356
1368
|
```
|
|
1357
1369
|
|
|
1358
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1370
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1359
1371
|
|
|
1360
1372
|
## `eas update:republish`
|
|
1361
1373
|
|
|
@@ -1382,7 +1394,7 @@ DESCRIPTION
|
|
|
1382
1394
|
roll back to an existing update
|
|
1383
1395
|
```
|
|
1384
1396
|
|
|
1385
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1397
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1386
1398
|
|
|
1387
1399
|
## `eas update:roll-back-to-embedded`
|
|
1388
1400
|
|
|
@@ -1409,7 +1421,7 @@ DESCRIPTION
|
|
|
1409
1421
|
roll back to the embedded update
|
|
1410
1422
|
```
|
|
1411
1423
|
|
|
1412
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1424
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1413
1425
|
|
|
1414
1426
|
## `eas update:rollback`
|
|
1415
1427
|
|
|
@@ -1428,7 +1440,7 @@ DESCRIPTION
|
|
|
1428
1440
|
roll back to an embedded update or an existing update
|
|
1429
1441
|
```
|
|
1430
1442
|
|
|
1431
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1443
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1432
1444
|
|
|
1433
1445
|
## `eas update:view GROUPID`
|
|
1434
1446
|
|
|
@@ -1448,7 +1460,7 @@ DESCRIPTION
|
|
|
1448
1460
|
update group details
|
|
1449
1461
|
```
|
|
1450
1462
|
|
|
1451
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1463
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1452
1464
|
|
|
1453
1465
|
## `eas webhook:create`
|
|
1454
1466
|
|
|
@@ -1469,7 +1481,7 @@ DESCRIPTION
|
|
|
1469
1481
|
create a webhook
|
|
1470
1482
|
```
|
|
1471
1483
|
|
|
1472
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1484
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1473
1485
|
|
|
1474
1486
|
## `eas webhook:delete [ID]`
|
|
1475
1487
|
|
|
@@ -1489,7 +1501,7 @@ DESCRIPTION
|
|
|
1489
1501
|
delete a webhook
|
|
1490
1502
|
```
|
|
1491
1503
|
|
|
1492
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1504
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1493
1505
|
|
|
1494
1506
|
## `eas webhook:list`
|
|
1495
1507
|
|
|
@@ -1507,7 +1519,7 @@ DESCRIPTION
|
|
|
1507
1519
|
list webhooks
|
|
1508
1520
|
```
|
|
1509
1521
|
|
|
1510
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1522
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1511
1523
|
|
|
1512
1524
|
## `eas webhook:update`
|
|
1513
1525
|
|
|
@@ -1529,7 +1541,7 @@ DESCRIPTION
|
|
|
1529
1541
|
update a webhook
|
|
1530
1542
|
```
|
|
1531
1543
|
|
|
1532
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1544
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1533
1545
|
|
|
1534
1546
|
## `eas webhook:view ID`
|
|
1535
1547
|
|
|
@@ -1546,7 +1558,7 @@ DESCRIPTION
|
|
|
1546
1558
|
view a webhook
|
|
1547
1559
|
```
|
|
1548
1560
|
|
|
1549
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v9.
|
|
1561
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v9.2.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1550
1562
|
|
|
1551
1563
|
## `eas whoami`
|
|
1552
1564
|
|
|
@@ -35,6 +35,16 @@ async function prepareJobAsync(ctx, jobData) {
|
|
|
35
35
|
const maybeCustomBuildConfigPath = buildProfile.config
|
|
36
36
|
? (0, customBuildConfig_1.getCustomBuildConfigPathForJob)(buildProfile.config)
|
|
37
37
|
: undefined;
|
|
38
|
+
let buildMode;
|
|
39
|
+
if (ctx.repack) {
|
|
40
|
+
buildMode = eas_build_job_1.BuildMode.REPACK;
|
|
41
|
+
}
|
|
42
|
+
else if (buildProfile.config) {
|
|
43
|
+
buildMode = eas_build_job_1.BuildMode.CUSTOM;
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
buildMode = eas_build_job_1.BuildMode.BUILD;
|
|
47
|
+
}
|
|
38
48
|
const job = {
|
|
39
49
|
type: ctx.workflow,
|
|
40
50
|
platform: eas_build_job_1.Platform.ANDROID,
|
|
@@ -72,7 +82,7 @@ async function prepareJobAsync(ctx, jobData) {
|
|
|
72
82
|
experimental: {
|
|
73
83
|
prebuildCommand: buildProfile.prebuildCommand,
|
|
74
84
|
},
|
|
75
|
-
mode:
|
|
85
|
+
mode: buildMode,
|
|
76
86
|
triggeredBy: eas_build_job_1.BuildTrigger.EAS_CLI,
|
|
77
87
|
...(maybeCustomBuildConfigPath && {
|
|
78
88
|
customBuildConfig: {
|