eas-cli 9.0.10 → 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 +148 -83
- 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.d.ts +0 -1
- package/build/commands/project/onboarding.js +6 -2
- package/build/submit/ArchiveSource.js +4 -6
- package/build/uploads.d.ts +1 -1
- package/build/uploads.js +1 -1
- package/oclif.manifest.json +72 -30
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -94,14 +94,17 @@ eas --help COMMAND
|
|
|
94
94
|
* [`eas diagnostics`](#eas-diagnostics)
|
|
95
95
|
* [`eas help [COMMAND]`](#eas-help-command)
|
|
96
96
|
* [`eas init`](#eas-init)
|
|
97
|
+
* [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
|
|
97
98
|
* [`eas login`](#eas-login)
|
|
98
99
|
* [`eas logout`](#eas-logout)
|
|
99
100
|
* [`eas metadata:lint`](#eas-metadatalint)
|
|
100
101
|
* [`eas metadata:pull`](#eas-metadatapull)
|
|
101
102
|
* [`eas metadata:push`](#eas-metadatapush)
|
|
103
|
+
* [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
|
|
102
104
|
* [`eas open`](#eas-open)
|
|
103
105
|
* [`eas project:info`](#eas-projectinfo)
|
|
104
106
|
* [`eas project:init`](#eas-projectinit)
|
|
107
|
+
* [`eas project:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-projectonboarding-target_project_directory)
|
|
105
108
|
* [`eas secret:create`](#eas-secretcreate)
|
|
106
109
|
* [`eas secret:delete`](#eas-secretdelete)
|
|
107
110
|
* [`eas secret:list`](#eas-secretlist)
|
|
@@ -140,7 +143,7 @@ ALIASES
|
|
|
140
143
|
$ eas login
|
|
141
144
|
```
|
|
142
145
|
|
|
143
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
144
147
|
|
|
145
148
|
## `eas account:logout`
|
|
146
149
|
|
|
@@ -157,7 +160,7 @@ ALIASES
|
|
|
157
160
|
$ eas logout
|
|
158
161
|
```
|
|
159
162
|
|
|
160
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
161
164
|
|
|
162
165
|
## `eas account:view`
|
|
163
166
|
|
|
@@ -174,7 +177,7 @@ ALIASES
|
|
|
174
177
|
$ eas whoami
|
|
175
178
|
```
|
|
176
179
|
|
|
177
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
178
181
|
|
|
179
182
|
## `eas analytics [STATUS]`
|
|
180
183
|
|
|
@@ -188,7 +191,7 @@ DESCRIPTION
|
|
|
188
191
|
display or change analytics settings
|
|
189
192
|
```
|
|
190
193
|
|
|
191
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
192
195
|
|
|
193
196
|
## `eas autocomplete [SHELL]`
|
|
194
197
|
|
|
@@ -240,7 +243,7 @@ DESCRIPTION
|
|
|
240
243
|
create a branch
|
|
241
244
|
```
|
|
242
245
|
|
|
243
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
244
247
|
|
|
245
248
|
## `eas branch:delete [NAME]`
|
|
246
249
|
|
|
@@ -261,7 +264,7 @@ DESCRIPTION
|
|
|
261
264
|
delete a branch
|
|
262
265
|
```
|
|
263
266
|
|
|
264
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
265
268
|
|
|
266
269
|
## `eas branch:list`
|
|
267
270
|
|
|
@@ -281,7 +284,7 @@ DESCRIPTION
|
|
|
281
284
|
list all branches
|
|
282
285
|
```
|
|
283
286
|
|
|
284
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
285
288
|
|
|
286
289
|
## `eas branch:rename`
|
|
287
290
|
|
|
@@ -301,7 +304,7 @@ DESCRIPTION
|
|
|
301
304
|
rename a branch
|
|
302
305
|
```
|
|
303
306
|
|
|
304
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
305
308
|
|
|
306
309
|
## `eas branch:view [NAME]`
|
|
307
310
|
|
|
@@ -324,7 +327,7 @@ DESCRIPTION
|
|
|
324
327
|
view a branch
|
|
325
328
|
```
|
|
326
329
|
|
|
327
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
328
331
|
|
|
329
332
|
## `eas build`
|
|
330
333
|
|
|
@@ -361,7 +364,7 @@ DESCRIPTION
|
|
|
361
364
|
start a build
|
|
362
365
|
```
|
|
363
366
|
|
|
364
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
365
368
|
|
|
366
369
|
## `eas build:cancel [BUILD_ID]`
|
|
367
370
|
|
|
@@ -380,7 +383,7 @@ DESCRIPTION
|
|
|
380
383
|
cancel a build
|
|
381
384
|
```
|
|
382
385
|
|
|
383
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
384
387
|
|
|
385
388
|
## `eas build:configure`
|
|
386
389
|
|
|
@@ -397,7 +400,7 @@ DESCRIPTION
|
|
|
397
400
|
configure the project to support EAS Build
|
|
398
401
|
```
|
|
399
402
|
|
|
400
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
401
404
|
|
|
402
405
|
## `eas build:delete [BUILD_ID]`
|
|
403
406
|
|
|
@@ -416,7 +419,7 @@ DESCRIPTION
|
|
|
416
419
|
delete a build
|
|
417
420
|
```
|
|
418
421
|
|
|
419
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
420
423
|
|
|
421
424
|
## `eas build:inspect`
|
|
422
425
|
|
|
@@ -451,7 +454,7 @@ DESCRIPTION
|
|
|
451
454
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
452
455
|
```
|
|
453
456
|
|
|
454
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
455
458
|
|
|
456
459
|
## `eas build:list`
|
|
457
460
|
|
|
@@ -459,20 +462,27 @@ list all builds for your project
|
|
|
459
462
|
|
|
460
463
|
```
|
|
461
464
|
USAGE
|
|
462
|
-
$ eas build:list [
|
|
465
|
+
$ eas build:list [-p android|ios|all] [--status
|
|
463
466
|
new|in-queue|in-progress|pending-cancel|errored|finished|canceled] [--distribution store|internal|simulator]
|
|
464
|
-
[--channel <value>] [--
|
|
465
|
-
<value>] [--
|
|
466
|
-
|
|
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]
|
|
467
470
|
|
|
468
471
|
FLAGS
|
|
469
|
-
--
|
|
470
|
-
|
|
471
|
-
--
|
|
472
|
-
--
|
|
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
|
|
473
481
|
--channel=<value>
|
|
474
|
-
--distribution=(store|internal|simulator)
|
|
475
|
-
|
|
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
|
|
476
486
|
--json Enable JSON output, non-JSON messages
|
|
477
487
|
will be printed to stderr.
|
|
478
488
|
--limit=<value> The number of items to fetch each query.
|
|
@@ -480,19 +490,21 @@ FLAGS
|
|
|
480
490
|
--non-interactive Run the command in non-interactive mode.
|
|
481
491
|
--offset=<value> Start queries from specified index. Use
|
|
482
492
|
for paginating results. Defaults to 0.
|
|
483
|
-
--
|
|
484
|
-
|
|
485
|
-
--
|
|
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
|
|
486
497
|
--simulator Filter only iOS simulator builds. Can
|
|
487
498
|
only be used with --platform flag set to
|
|
488
499
|
"ios"
|
|
489
|
-
--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
|
|
490
502
|
|
|
491
503
|
DESCRIPTION
|
|
492
504
|
list all builds for your project
|
|
493
505
|
```
|
|
494
506
|
|
|
495
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
496
508
|
|
|
497
509
|
## `eas build:resign`
|
|
498
510
|
|
|
@@ -500,25 +512,28 @@ re-sign a build archive
|
|
|
500
512
|
|
|
501
513
|
```
|
|
502
514
|
USAGE
|
|
503
|
-
$ eas build:resign [-p android|ios] [-e <value>] [--
|
|
504
|
-
[--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]
|
|
505
517
|
|
|
506
518
|
FLAGS
|
|
507
|
-
-e, --profile=PROFILE_NAME
|
|
508
|
-
|
|
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.
|
|
509
522
|
-p, --platform=(android|ios)
|
|
510
|
-
--id=<value>
|
|
511
|
-
--json
|
|
512
|
-
--limit=<value>
|
|
513
|
-
--non-interactive
|
|
514
|
-
--offset=<value>
|
|
515
|
-
--
|
|
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.
|
|
516
531
|
|
|
517
532
|
DESCRIPTION
|
|
518
533
|
re-sign a build archive
|
|
519
534
|
```
|
|
520
535
|
|
|
521
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
522
537
|
|
|
523
538
|
## `eas build:run`
|
|
524
539
|
|
|
@@ -544,7 +559,7 @@ DESCRIPTION
|
|
|
544
559
|
run simulator/emulator builds from eas-cli
|
|
545
560
|
```
|
|
546
561
|
|
|
547
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
548
563
|
|
|
549
564
|
## `eas build:submit`
|
|
550
565
|
|
|
@@ -594,7 +609,7 @@ DESCRIPTION
|
|
|
594
609
|
get the latest version from EAS servers
|
|
595
610
|
```
|
|
596
611
|
|
|
597
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
598
613
|
|
|
599
614
|
## `eas build:version:set`
|
|
600
615
|
|
|
@@ -613,7 +628,7 @@ DESCRIPTION
|
|
|
613
628
|
update version of an app
|
|
614
629
|
```
|
|
615
630
|
|
|
616
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
617
632
|
|
|
618
633
|
## `eas build:version:sync`
|
|
619
634
|
|
|
@@ -632,7 +647,7 @@ DESCRIPTION
|
|
|
632
647
|
update a version in native code with a value stored on EAS servers
|
|
633
648
|
```
|
|
634
649
|
|
|
635
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
636
651
|
|
|
637
652
|
## `eas build:view [BUILD_ID]`
|
|
638
653
|
|
|
@@ -649,7 +664,7 @@ DESCRIPTION
|
|
|
649
664
|
view a build for your project
|
|
650
665
|
```
|
|
651
666
|
|
|
652
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
653
668
|
|
|
654
669
|
## `eas channel:create [NAME]`
|
|
655
670
|
|
|
@@ -670,7 +685,7 @@ DESCRIPTION
|
|
|
670
685
|
create a channel
|
|
671
686
|
```
|
|
672
687
|
|
|
673
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
674
689
|
|
|
675
690
|
## `eas channel:edit [NAME]`
|
|
676
691
|
|
|
@@ -692,7 +707,7 @@ DESCRIPTION
|
|
|
692
707
|
point a channel at a new branch
|
|
693
708
|
```
|
|
694
709
|
|
|
695
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
696
711
|
|
|
697
712
|
## `eas channel:list`
|
|
698
713
|
|
|
@@ -712,7 +727,7 @@ DESCRIPTION
|
|
|
712
727
|
list all channels
|
|
713
728
|
```
|
|
714
729
|
|
|
715
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
716
731
|
|
|
717
732
|
## `eas channel:rollout [CHANNEL]`
|
|
718
733
|
|
|
@@ -744,7 +759,7 @@ DESCRIPTION
|
|
|
744
759
|
Roll a new branch out on a channel incrementally.
|
|
745
760
|
```
|
|
746
761
|
|
|
747
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
748
763
|
|
|
749
764
|
## `eas channel:view [NAME]`
|
|
750
765
|
|
|
@@ -767,7 +782,7 @@ DESCRIPTION
|
|
|
767
782
|
view a channel
|
|
768
783
|
```
|
|
769
784
|
|
|
770
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
771
786
|
|
|
772
787
|
## `eas config`
|
|
773
788
|
|
|
@@ -788,7 +803,7 @@ DESCRIPTION
|
|
|
788
803
|
display project configuration (app.json + eas.json)
|
|
789
804
|
```
|
|
790
805
|
|
|
791
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
792
807
|
|
|
793
808
|
## `eas credentials`
|
|
794
809
|
|
|
@@ -805,7 +820,7 @@ DESCRIPTION
|
|
|
805
820
|
manage credentials
|
|
806
821
|
```
|
|
807
822
|
|
|
808
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
809
824
|
|
|
810
825
|
## `eas credentials:configure-build`
|
|
811
826
|
|
|
@@ -823,7 +838,7 @@ DESCRIPTION
|
|
|
823
838
|
Set up credentials for building your project.
|
|
824
839
|
```
|
|
825
840
|
|
|
826
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
827
842
|
|
|
828
843
|
## `eas device:create`
|
|
829
844
|
|
|
@@ -837,7 +852,7 @@ DESCRIPTION
|
|
|
837
852
|
register new Apple Devices to use for internal distribution
|
|
838
853
|
```
|
|
839
854
|
|
|
840
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
841
856
|
|
|
842
857
|
## `eas device:delete`
|
|
843
858
|
|
|
@@ -857,7 +872,7 @@ DESCRIPTION
|
|
|
857
872
|
remove a registered device from your account
|
|
858
873
|
```
|
|
859
874
|
|
|
860
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
861
876
|
|
|
862
877
|
## `eas device:list`
|
|
863
878
|
|
|
@@ -878,7 +893,7 @@ DESCRIPTION
|
|
|
878
893
|
list all registered devices for your account
|
|
879
894
|
```
|
|
880
895
|
|
|
881
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
882
897
|
|
|
883
898
|
## `eas device:rename`
|
|
884
899
|
|
|
@@ -899,7 +914,7 @@ DESCRIPTION
|
|
|
899
914
|
rename a registered device
|
|
900
915
|
```
|
|
901
916
|
|
|
902
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
903
918
|
|
|
904
919
|
## `eas device:view [UDID]`
|
|
905
920
|
|
|
@@ -913,7 +928,7 @@ DESCRIPTION
|
|
|
913
928
|
view a device for your project
|
|
914
929
|
```
|
|
915
930
|
|
|
916
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
917
932
|
|
|
918
933
|
## `eas diagnostics`
|
|
919
934
|
|
|
@@ -927,7 +942,7 @@ DESCRIPTION
|
|
|
927
942
|
display environment info
|
|
928
943
|
```
|
|
929
944
|
|
|
930
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
931
946
|
|
|
932
947
|
## `eas help [COMMAND]`
|
|
933
948
|
|
|
@@ -969,6 +984,22 @@ ALIASES
|
|
|
969
984
|
$ eas init
|
|
970
985
|
```
|
|
971
986
|
|
|
987
|
+
## `eas init:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
988
|
+
|
|
989
|
+
continue onboarding process started on the https://expo.new website.
|
|
990
|
+
|
|
991
|
+
```
|
|
992
|
+
USAGE
|
|
993
|
+
$ eas init:onboarding [TARGET_PROJECT_DIRECTORY]
|
|
994
|
+
|
|
995
|
+
DESCRIPTION
|
|
996
|
+
continue onboarding process started on the https://expo.new website.
|
|
997
|
+
|
|
998
|
+
ALIASES
|
|
999
|
+
$ eas init:onboarding
|
|
1000
|
+
$ eas onboarding
|
|
1001
|
+
```
|
|
1002
|
+
|
|
972
1003
|
## `eas login`
|
|
973
1004
|
|
|
974
1005
|
log in with your Expo account
|
|
@@ -1018,7 +1049,7 @@ DESCRIPTION
|
|
|
1018
1049
|
validate the local store configuration
|
|
1019
1050
|
```
|
|
1020
1051
|
|
|
1021
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1022
1053
|
|
|
1023
1054
|
## `eas metadata:pull`
|
|
1024
1055
|
|
|
@@ -1035,7 +1066,7 @@ DESCRIPTION
|
|
|
1035
1066
|
generate the local store configuration from the app stores
|
|
1036
1067
|
```
|
|
1037
1068
|
|
|
1038
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1039
1070
|
|
|
1040
1071
|
## `eas metadata:push`
|
|
1041
1072
|
|
|
@@ -1052,7 +1083,23 @@ DESCRIPTION
|
|
|
1052
1083
|
sync the local store configuration to the app stores
|
|
1053
1084
|
```
|
|
1054
1085
|
|
|
1055
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1087
|
+
|
|
1088
|
+
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1089
|
+
|
|
1090
|
+
continue onboarding process started on the https://expo.new website.
|
|
1091
|
+
|
|
1092
|
+
```
|
|
1093
|
+
USAGE
|
|
1094
|
+
$ eas onboarding [TARGET_PROJECT_DIRECTORY]
|
|
1095
|
+
|
|
1096
|
+
DESCRIPTION
|
|
1097
|
+
continue onboarding process started on the https://expo.new website.
|
|
1098
|
+
|
|
1099
|
+
ALIASES
|
|
1100
|
+
$ eas init:onboarding
|
|
1101
|
+
$ eas onboarding
|
|
1102
|
+
```
|
|
1056
1103
|
|
|
1057
1104
|
## `eas open`
|
|
1058
1105
|
|
|
@@ -1066,7 +1113,7 @@ DESCRIPTION
|
|
|
1066
1113
|
open the project page in a web browser
|
|
1067
1114
|
```
|
|
1068
1115
|
|
|
1069
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1070
1117
|
|
|
1071
1118
|
## `eas project:info`
|
|
1072
1119
|
|
|
@@ -1080,7 +1127,7 @@ DESCRIPTION
|
|
|
1080
1127
|
information about the current project
|
|
1081
1128
|
```
|
|
1082
1129
|
|
|
1083
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1084
1131
|
|
|
1085
1132
|
## `eas project:init`
|
|
1086
1133
|
|
|
@@ -1102,7 +1149,25 @@ ALIASES
|
|
|
1102
1149
|
$ eas init
|
|
1103
1150
|
```
|
|
1104
1151
|
|
|
1105
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1153
|
+
|
|
1154
|
+
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1155
|
+
|
|
1156
|
+
continue onboarding process started on the https://expo.new website.
|
|
1157
|
+
|
|
1158
|
+
```
|
|
1159
|
+
USAGE
|
|
1160
|
+
$ eas project:onboarding [TARGET_PROJECT_DIRECTORY]
|
|
1161
|
+
|
|
1162
|
+
DESCRIPTION
|
|
1163
|
+
continue onboarding process started on the https://expo.new website.
|
|
1164
|
+
|
|
1165
|
+
ALIASES
|
|
1166
|
+
$ eas init:onboarding
|
|
1167
|
+
$ eas onboarding
|
|
1168
|
+
```
|
|
1169
|
+
|
|
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)_
|
|
1106
1171
|
|
|
1107
1172
|
## `eas secret:create`
|
|
1108
1173
|
|
|
@@ -1125,7 +1190,7 @@ DESCRIPTION
|
|
|
1125
1190
|
create an environment secret on the current project or owner account
|
|
1126
1191
|
```
|
|
1127
1192
|
|
|
1128
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1129
1194
|
|
|
1130
1195
|
## `eas secret:delete`
|
|
1131
1196
|
|
|
@@ -1143,7 +1208,7 @@ DESCRIPTION
|
|
|
1143
1208
|
delete an environment secret by ID
|
|
1144
1209
|
```
|
|
1145
1210
|
|
|
1146
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1147
1212
|
|
|
1148
1213
|
## `eas secret:list`
|
|
1149
1214
|
|
|
@@ -1157,7 +1222,7 @@ DESCRIPTION
|
|
|
1157
1222
|
list environment secrets available for your current app
|
|
1158
1223
|
```
|
|
1159
1224
|
|
|
1160
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1161
1226
|
|
|
1162
1227
|
## `eas secret:push`
|
|
1163
1228
|
|
|
@@ -1177,7 +1242,7 @@ DESCRIPTION
|
|
|
1177
1242
|
read environment secrets from env file and store on the server
|
|
1178
1243
|
```
|
|
1179
1244
|
|
|
1180
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1181
1246
|
|
|
1182
1247
|
## `eas submit`
|
|
1183
1248
|
|
|
@@ -1208,7 +1273,7 @@ ALIASES
|
|
|
1208
1273
|
$ eas build:submit
|
|
1209
1274
|
```
|
|
1210
1275
|
|
|
1211
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1212
1277
|
|
|
1213
1278
|
## `eas update`
|
|
1214
1279
|
|
|
@@ -1241,7 +1306,7 @@ DESCRIPTION
|
|
|
1241
1306
|
publish an update group
|
|
1242
1307
|
```
|
|
1243
1308
|
|
|
1244
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1245
1310
|
|
|
1246
1311
|
## `eas update:configure`
|
|
1247
1312
|
|
|
@@ -1259,7 +1324,7 @@ DESCRIPTION
|
|
|
1259
1324
|
configure the project to support EAS Update
|
|
1260
1325
|
```
|
|
1261
1326
|
|
|
1262
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1263
1328
|
|
|
1264
1329
|
## `eas update:delete GROUPID`
|
|
1265
1330
|
|
|
@@ -1280,7 +1345,7 @@ DESCRIPTION
|
|
|
1280
1345
|
delete all the updates in an update group
|
|
1281
1346
|
```
|
|
1282
1347
|
|
|
1283
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1284
1349
|
|
|
1285
1350
|
## `eas update:list`
|
|
1286
1351
|
|
|
@@ -1302,7 +1367,7 @@ DESCRIPTION
|
|
|
1302
1367
|
view the recent updates
|
|
1303
1368
|
```
|
|
1304
1369
|
|
|
1305
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1306
1371
|
|
|
1307
1372
|
## `eas update:republish`
|
|
1308
1373
|
|
|
@@ -1329,7 +1394,7 @@ DESCRIPTION
|
|
|
1329
1394
|
roll back to an existing update
|
|
1330
1395
|
```
|
|
1331
1396
|
|
|
1332
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1333
1398
|
|
|
1334
1399
|
## `eas update:roll-back-to-embedded`
|
|
1335
1400
|
|
|
@@ -1356,7 +1421,7 @@ DESCRIPTION
|
|
|
1356
1421
|
roll back to the embedded update
|
|
1357
1422
|
```
|
|
1358
1423
|
|
|
1359
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1360
1425
|
|
|
1361
1426
|
## `eas update:rollback`
|
|
1362
1427
|
|
|
@@ -1375,7 +1440,7 @@ DESCRIPTION
|
|
|
1375
1440
|
roll back to an embedded update or an existing update
|
|
1376
1441
|
```
|
|
1377
1442
|
|
|
1378
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1379
1444
|
|
|
1380
1445
|
## `eas update:view GROUPID`
|
|
1381
1446
|
|
|
@@ -1395,7 +1460,7 @@ DESCRIPTION
|
|
|
1395
1460
|
update group details
|
|
1396
1461
|
```
|
|
1397
1462
|
|
|
1398
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1399
1464
|
|
|
1400
1465
|
## `eas webhook:create`
|
|
1401
1466
|
|
|
@@ -1416,7 +1481,7 @@ DESCRIPTION
|
|
|
1416
1481
|
create a webhook
|
|
1417
1482
|
```
|
|
1418
1483
|
|
|
1419
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1420
1485
|
|
|
1421
1486
|
## `eas webhook:delete [ID]`
|
|
1422
1487
|
|
|
@@ -1436,7 +1501,7 @@ DESCRIPTION
|
|
|
1436
1501
|
delete a webhook
|
|
1437
1502
|
```
|
|
1438
1503
|
|
|
1439
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1440
1505
|
|
|
1441
1506
|
## `eas webhook:list`
|
|
1442
1507
|
|
|
@@ -1454,7 +1519,7 @@ DESCRIPTION
|
|
|
1454
1519
|
list webhooks
|
|
1455
1520
|
```
|
|
1456
1521
|
|
|
1457
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1458
1523
|
|
|
1459
1524
|
## `eas webhook:update`
|
|
1460
1525
|
|
|
@@ -1476,7 +1541,7 @@ DESCRIPTION
|
|
|
1476
1541
|
update a webhook
|
|
1477
1542
|
```
|
|
1478
1543
|
|
|
1479
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1480
1545
|
|
|
1481
1546
|
## `eas webhook:view ID`
|
|
1482
1547
|
|
|
@@ -1493,7 +1558,7 @@ DESCRIPTION
|
|
|
1493
1558
|
view a webhook
|
|
1494
1559
|
```
|
|
1495
1560
|
|
|
1496
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v9.0
|
|
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)_
|
|
1497
1562
|
|
|
1498
1563
|
## `eas whoami`
|
|
1499
1564
|
|