eas-cli 0.48.1 → 0.50.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 +144 -50
- package/build/build/build.d.ts +6 -2
- package/build/build/build.js +191 -104
- package/build/build/local.js +1 -1
- package/build/build/runBuildAndSubmit.js +5 -1
- package/build/build/utils/printBuildInfo.js +1 -2
- package/build/build/utils/url.js +6 -8
- package/build/credentials/context.js +5 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.js +0 -1
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +1 -1
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +5 -1
- package/build/credentials/ios/appstore/AppStoreApi.js +38 -15
- package/build/credentials/ios/appstore/ascApiKey.d.ts +21 -5
- package/build/credentials/ios/appstore/ascApiKey.js +28 -12
- package/build/credentials/ios/appstore/authenticate.d.ts +9 -18
- package/build/credentials/ios/appstore/authenticate.js +43 -3
- package/build/credentials/ios/appstore/authenticateTypes.d.ts +42 -0
- package/build/credentials/ios/appstore/authenticateTypes.js +16 -0
- package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +2 -0
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +9 -0
- package/build/credentials/ios/appstore/contractMessages.d.ts +3 -0
- package/build/credentials/ios/appstore/contractMessages.js +12 -0
- package/build/credentials/ios/appstore/distributionCertificate.d.ts +1 -1
- package/build/credentials/ios/appstore/ensureAppExists.d.ts +2 -2
- package/build/credentials/ios/appstore/ensureAppExists.js +12 -5
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
- package/build/credentials/ios/appstore/provisioningProfile.js +6 -0
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +1 -1
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +17 -2
- package/build/credentials/ios/appstore/pushKey.d.ts +16 -4
- package/build/credentials/ios/appstore/pushKey.js +20 -8
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +10 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +125 -3
- package/build/credentials/ios/utils/authType.d.ts +4 -0
- package/build/credentials/ios/utils/authType.js +8 -0
- package/build/fetch.d.ts +3 -0
- package/build/fetch.js +14 -2
- package/build/graphql/client.js +15 -14
- package/build/graphql/generated.d.ts +83 -0
- package/build/graphql/generated.js +16 -1
- package/build/graphql/mutations/BuildMutation.js +2 -2
- package/build/graphql/types/Build.js +5 -0
- package/build/project/ios/target.js +37 -0
- package/build/submit/ios/AppProduce.d.ts +0 -1
- package/build/submit/ios/AppProduce.js +5 -6
- package/build/submit/ios/AppSpecificPasswordSource.js +2 -2
- package/build/utils/code-signing.d.ts +0 -5
- package/build/utils/code-signing.js +5 -51
- package/oclif.manifest.json +1 -1
- package/package.json +15 -14
package/README.md
CHANGED
|
@@ -48,6 +48,7 @@ eas --help COMMAND
|
|
|
48
48
|
* [`eas build:configure`](#eas-buildconfigure)
|
|
49
49
|
* [`eas build:inspect`](#eas-buildinspect)
|
|
50
50
|
* [`eas build:list`](#eas-buildlist)
|
|
51
|
+
* [`eas build:submit`](#eas-buildsubmit)
|
|
51
52
|
* [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
|
|
52
53
|
* [`eas channel:create [NAME]`](#eas-channelcreate-name)
|
|
53
54
|
* [`eas channel:edit [NAME]`](#eas-channeledit-name)
|
|
@@ -61,6 +62,9 @@ eas --help COMMAND
|
|
|
61
62
|
* [`eas device:view [UDID]`](#eas-deviceview-udid)
|
|
62
63
|
* [`eas diagnostics`](#eas-diagnostics)
|
|
63
64
|
* [`eas help [COMMAND]`](#eas-help-command)
|
|
65
|
+
* [`eas init`](#eas-init)
|
|
66
|
+
* [`eas login`](#eas-login)
|
|
67
|
+
* [`eas logout`](#eas-logout)
|
|
64
68
|
* [`eas project:info`](#eas-projectinfo)
|
|
65
69
|
* [`eas project:init`](#eas-projectinit)
|
|
66
70
|
* [`eas secret:create`](#eas-secretcreate)
|
|
@@ -77,6 +81,7 @@ eas --help COMMAND
|
|
|
77
81
|
* [`eas webhook:list`](#eas-webhooklist)
|
|
78
82
|
* [`eas webhook:update`](#eas-webhookupdate)
|
|
79
83
|
* [`eas webhook:view ID`](#eas-webhookview-id)
|
|
84
|
+
* [`eas whoami`](#eas-whoami)
|
|
80
85
|
|
|
81
86
|
## `eas account:login`
|
|
82
87
|
|
|
@@ -93,7 +98,7 @@ ALIASES
|
|
|
93
98
|
$ eas login
|
|
94
99
|
```
|
|
95
100
|
|
|
96
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
101
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
97
102
|
|
|
98
103
|
## `eas account:logout`
|
|
99
104
|
|
|
@@ -110,7 +115,7 @@ ALIASES
|
|
|
110
115
|
$ eas logout
|
|
111
116
|
```
|
|
112
117
|
|
|
113
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
118
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
114
119
|
|
|
115
120
|
## `eas account:view`
|
|
116
121
|
|
|
@@ -127,7 +132,7 @@ ALIASES
|
|
|
127
132
|
$ eas whoami
|
|
128
133
|
```
|
|
129
134
|
|
|
130
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
135
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
131
136
|
|
|
132
137
|
## `eas analytics [STATUS]`
|
|
133
138
|
|
|
@@ -141,7 +146,7 @@ DESCRIPTION
|
|
|
141
146
|
display or change analytics settings
|
|
142
147
|
```
|
|
143
148
|
|
|
144
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
149
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
145
150
|
|
|
146
151
|
## `eas autocomplete [SHELL]`
|
|
147
152
|
|
|
@@ -190,7 +195,7 @@ DESCRIPTION
|
|
|
190
195
|
create a branch
|
|
191
196
|
```
|
|
192
197
|
|
|
193
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
198
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
194
199
|
|
|
195
200
|
## `eas branch:delete [NAME]`
|
|
196
201
|
|
|
@@ -210,7 +215,7 @@ DESCRIPTION
|
|
|
210
215
|
delete a branch
|
|
211
216
|
```
|
|
212
217
|
|
|
213
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
218
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
214
219
|
|
|
215
220
|
## `eas branch:list`
|
|
216
221
|
|
|
@@ -227,7 +232,7 @@ DESCRIPTION
|
|
|
227
232
|
list all branches
|
|
228
233
|
```
|
|
229
234
|
|
|
230
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
235
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
231
236
|
|
|
232
237
|
## `eas branch:rename`
|
|
233
238
|
|
|
@@ -246,7 +251,7 @@ DESCRIPTION
|
|
|
246
251
|
rename a branch
|
|
247
252
|
```
|
|
248
253
|
|
|
249
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
254
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
250
255
|
|
|
251
256
|
## `eas branch:view [NAME]`
|
|
252
257
|
|
|
@@ -266,7 +271,7 @@ DESCRIPTION
|
|
|
266
271
|
view a branch
|
|
267
272
|
```
|
|
268
273
|
|
|
269
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
274
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
270
275
|
|
|
271
276
|
## `eas build`
|
|
272
277
|
|
|
@@ -274,9 +279,8 @@ start a build
|
|
|
274
279
|
|
|
275
280
|
```
|
|
276
281
|
USAGE
|
|
277
|
-
$ eas build [-p android|ios|all] [--json] [--
|
|
278
|
-
|
|
279
|
-
--auto-submit-with-profile <value>]
|
|
282
|
+
$ eas build [-p android|ios|all] [--json] [--profile <value>] [--non-interactive] [--local] [--output
|
|
283
|
+
<value>] [--wait] [--clear-cache] [--auto-submit | --auto-submit-with-profile <value>]
|
|
280
284
|
|
|
281
285
|
FLAGS
|
|
282
286
|
-p, --platform=(android|ios|all)
|
|
@@ -290,14 +294,13 @@ FLAGS
|
|
|
290
294
|
--output=<value> Output path for local build
|
|
291
295
|
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
|
|
292
296
|
in eas.json.
|
|
293
|
-
--skip-project-configuration Skip project configuration
|
|
294
297
|
--[no-]wait Wait for build(s) to complete
|
|
295
298
|
|
|
296
299
|
DESCRIPTION
|
|
297
300
|
start a build
|
|
298
301
|
```
|
|
299
302
|
|
|
300
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
303
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
301
304
|
|
|
302
305
|
## `eas build:cancel [BUILD_ID]`
|
|
303
306
|
|
|
@@ -311,7 +314,7 @@ DESCRIPTION
|
|
|
311
314
|
cancel a build
|
|
312
315
|
```
|
|
313
316
|
|
|
314
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
317
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
315
318
|
|
|
316
319
|
## `eas build:configure`
|
|
317
320
|
|
|
@@ -328,7 +331,7 @@ DESCRIPTION
|
|
|
328
331
|
configure the project to support EAS Build
|
|
329
332
|
```
|
|
330
333
|
|
|
331
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
334
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
332
335
|
|
|
333
336
|
## `eas build:inspect`
|
|
334
337
|
|
|
@@ -363,7 +366,7 @@ DESCRIPTION
|
|
|
363
366
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
364
367
|
```
|
|
365
368
|
|
|
366
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
369
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
367
370
|
|
|
368
371
|
## `eas build:list`
|
|
369
372
|
|
|
@@ -396,7 +399,35 @@ DESCRIPTION
|
|
|
396
399
|
list all builds for your project
|
|
397
400
|
```
|
|
398
401
|
|
|
399
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
402
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
403
|
+
|
|
404
|
+
## `eas build:submit`
|
|
405
|
+
|
|
406
|
+
submit app binary to App Store and/or Play Store
|
|
407
|
+
|
|
408
|
+
```
|
|
409
|
+
USAGE
|
|
410
|
+
$ eas build:submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
|
|
411
|
+
<value>] [--verbose] [--wait] [--non-interactive]
|
|
412
|
+
|
|
413
|
+
FLAGS
|
|
414
|
+
-p, --platform=(android|ios|all)
|
|
415
|
+
--id=<value> ID of the build to submit
|
|
416
|
+
--latest Submit the latest build for specified platform
|
|
417
|
+
--non-interactive Run command in non-interactive mode
|
|
418
|
+
--path=<value> Path to the .apk/.aab/.ipa file
|
|
419
|
+
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
420
|
+
eas.json.
|
|
421
|
+
--url=<value> App archive url
|
|
422
|
+
--verbose Always print logs from Submission Service
|
|
423
|
+
--[no-]wait Wait for submission to complete
|
|
424
|
+
|
|
425
|
+
DESCRIPTION
|
|
426
|
+
submit app binary to App Store and/or Play Store
|
|
427
|
+
|
|
428
|
+
ALIASES
|
|
429
|
+
$ eas build:submit
|
|
430
|
+
```
|
|
400
431
|
|
|
401
432
|
## `eas build:view [BUILD_ID]`
|
|
402
433
|
|
|
@@ -413,7 +444,7 @@ DESCRIPTION
|
|
|
413
444
|
view a build for your project
|
|
414
445
|
```
|
|
415
446
|
|
|
416
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
447
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
417
448
|
|
|
418
449
|
## `eas channel:create [NAME]`
|
|
419
450
|
|
|
@@ -433,7 +464,7 @@ DESCRIPTION
|
|
|
433
464
|
create a channel
|
|
434
465
|
```
|
|
435
466
|
|
|
436
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
467
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
437
468
|
|
|
438
469
|
## `eas channel:edit [NAME]`
|
|
439
470
|
|
|
@@ -454,7 +485,7 @@ DESCRIPTION
|
|
|
454
485
|
point a channel at a new branch
|
|
455
486
|
```
|
|
456
487
|
|
|
457
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
488
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
458
489
|
|
|
459
490
|
## `eas channel:list`
|
|
460
491
|
|
|
@@ -471,7 +502,7 @@ DESCRIPTION
|
|
|
471
502
|
list all channels
|
|
472
503
|
```
|
|
473
504
|
|
|
474
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
505
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
475
506
|
|
|
476
507
|
## `eas channel:view [NAME]`
|
|
477
508
|
|
|
@@ -491,7 +522,7 @@ DESCRIPTION
|
|
|
491
522
|
view a channel
|
|
492
523
|
```
|
|
493
524
|
|
|
494
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
525
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
495
526
|
|
|
496
527
|
## `eas config`
|
|
497
528
|
|
|
@@ -509,7 +540,7 @@ DESCRIPTION
|
|
|
509
540
|
display project configuration (app.json + eas.json)
|
|
510
541
|
```
|
|
511
542
|
|
|
512
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
543
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/config.ts)_
|
|
513
544
|
|
|
514
545
|
## `eas credentials`
|
|
515
546
|
|
|
@@ -523,7 +554,7 @@ DESCRIPTION
|
|
|
523
554
|
manage credentials
|
|
524
555
|
```
|
|
525
556
|
|
|
526
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
557
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/credentials.ts)_
|
|
527
558
|
|
|
528
559
|
## `eas device:create`
|
|
529
560
|
|
|
@@ -537,7 +568,7 @@ DESCRIPTION
|
|
|
537
568
|
register new Apple Devices to use for internal distribution
|
|
538
569
|
```
|
|
539
570
|
|
|
540
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
571
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
541
572
|
|
|
542
573
|
## `eas device:delete`
|
|
543
574
|
|
|
@@ -555,7 +586,7 @@ DESCRIPTION
|
|
|
555
586
|
remove a registered device from your account
|
|
556
587
|
```
|
|
557
588
|
|
|
558
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
589
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
559
590
|
|
|
560
591
|
## `eas device:list`
|
|
561
592
|
|
|
@@ -572,7 +603,7 @@ DESCRIPTION
|
|
|
572
603
|
list all registered devices for your account
|
|
573
604
|
```
|
|
574
605
|
|
|
575
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
606
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
576
607
|
|
|
577
608
|
## `eas device:view [UDID]`
|
|
578
609
|
|
|
@@ -586,7 +617,7 @@ DESCRIPTION
|
|
|
586
617
|
view a device for your project
|
|
587
618
|
```
|
|
588
619
|
|
|
589
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
620
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
590
621
|
|
|
591
622
|
## `eas diagnostics`
|
|
592
623
|
|
|
@@ -600,7 +631,7 @@ DESCRIPTION
|
|
|
600
631
|
display environment info
|
|
601
632
|
```
|
|
602
633
|
|
|
603
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
634
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
604
635
|
|
|
605
636
|
## `eas help [COMMAND]`
|
|
606
637
|
|
|
@@ -620,7 +651,52 @@ DESCRIPTION
|
|
|
620
651
|
Display help for eas.
|
|
621
652
|
```
|
|
622
653
|
|
|
623
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.
|
|
654
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
|
|
655
|
+
|
|
656
|
+
## `eas init`
|
|
657
|
+
|
|
658
|
+
create or link an EAS project
|
|
659
|
+
|
|
660
|
+
```
|
|
661
|
+
USAGE
|
|
662
|
+
$ eas init
|
|
663
|
+
|
|
664
|
+
DESCRIPTION
|
|
665
|
+
create or link an EAS project
|
|
666
|
+
|
|
667
|
+
ALIASES
|
|
668
|
+
$ eas init
|
|
669
|
+
```
|
|
670
|
+
|
|
671
|
+
## `eas login`
|
|
672
|
+
|
|
673
|
+
log in with your Expo account
|
|
674
|
+
|
|
675
|
+
```
|
|
676
|
+
USAGE
|
|
677
|
+
$ eas login
|
|
678
|
+
|
|
679
|
+
DESCRIPTION
|
|
680
|
+
log in with your Expo account
|
|
681
|
+
|
|
682
|
+
ALIASES
|
|
683
|
+
$ eas login
|
|
684
|
+
```
|
|
685
|
+
|
|
686
|
+
## `eas logout`
|
|
687
|
+
|
|
688
|
+
log out
|
|
689
|
+
|
|
690
|
+
```
|
|
691
|
+
USAGE
|
|
692
|
+
$ eas logout
|
|
693
|
+
|
|
694
|
+
DESCRIPTION
|
|
695
|
+
log out
|
|
696
|
+
|
|
697
|
+
ALIASES
|
|
698
|
+
$ eas logout
|
|
699
|
+
```
|
|
624
700
|
|
|
625
701
|
## `eas project:info`
|
|
626
702
|
|
|
@@ -634,7 +710,7 @@ DESCRIPTION
|
|
|
634
710
|
information about the current project
|
|
635
711
|
```
|
|
636
712
|
|
|
637
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
713
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
638
714
|
|
|
639
715
|
## `eas project:init`
|
|
640
716
|
|
|
@@ -651,7 +727,7 @@ ALIASES
|
|
|
651
727
|
$ eas init
|
|
652
728
|
```
|
|
653
729
|
|
|
654
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
730
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
655
731
|
|
|
656
732
|
## `eas secret:create`
|
|
657
733
|
|
|
@@ -671,7 +747,7 @@ DESCRIPTION
|
|
|
671
747
|
create an environment secret on the current project or owner account
|
|
672
748
|
```
|
|
673
749
|
|
|
674
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
750
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
675
751
|
|
|
676
752
|
## `eas secret:delete`
|
|
677
753
|
|
|
@@ -688,7 +764,7 @@ DESCRIPTION
|
|
|
688
764
|
delete an environment secret by ID
|
|
689
765
|
```
|
|
690
766
|
|
|
691
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
767
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
692
768
|
|
|
693
769
|
## `eas secret:list`
|
|
694
770
|
|
|
@@ -702,11 +778,11 @@ DESCRIPTION
|
|
|
702
778
|
list environment secrets available for your current app
|
|
703
779
|
```
|
|
704
780
|
|
|
705
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
781
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
706
782
|
|
|
707
783
|
## `eas submit`
|
|
708
784
|
|
|
709
|
-
submit app binary to
|
|
785
|
+
submit app binary to App Store and/or Play Store
|
|
710
786
|
|
|
711
787
|
```
|
|
712
788
|
USAGE
|
|
@@ -726,13 +802,13 @@ FLAGS
|
|
|
726
802
|
--[no-]wait Wait for submission to complete
|
|
727
803
|
|
|
728
804
|
DESCRIPTION
|
|
729
|
-
submit app binary to
|
|
805
|
+
submit app binary to App Store and/or Play Store
|
|
730
806
|
|
|
731
807
|
ALIASES
|
|
732
808
|
$ eas build:submit
|
|
733
809
|
```
|
|
734
810
|
|
|
735
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
811
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/submit.ts)_
|
|
736
812
|
|
|
737
813
|
## `eas update`
|
|
738
814
|
|
|
@@ -761,7 +837,7 @@ DESCRIPTION
|
|
|
761
837
|
publish an update group
|
|
762
838
|
```
|
|
763
839
|
|
|
764
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
840
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
765
841
|
|
|
766
842
|
## `eas update:configure`
|
|
767
843
|
|
|
@@ -769,13 +845,16 @@ configure the project to support EAS Update
|
|
|
769
845
|
|
|
770
846
|
```
|
|
771
847
|
USAGE
|
|
772
|
-
$ eas update:configure
|
|
848
|
+
$ eas update:configure [-p android|ios|all]
|
|
849
|
+
|
|
850
|
+
FLAGS
|
|
851
|
+
-p, --platform=(android|ios|all) [default: all] Platform to configure
|
|
773
852
|
|
|
774
853
|
DESCRIPTION
|
|
775
854
|
configure the project to support EAS Update
|
|
776
855
|
```
|
|
777
856
|
|
|
778
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
857
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
779
858
|
|
|
780
859
|
## `eas update:delete GROUPID`
|
|
781
860
|
|
|
@@ -795,7 +874,7 @@ DESCRIPTION
|
|
|
795
874
|
delete all the updates in an update group
|
|
796
875
|
```
|
|
797
876
|
|
|
798
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
877
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
799
878
|
|
|
800
879
|
## `eas update:list`
|
|
801
880
|
|
|
@@ -814,7 +893,7 @@ DESCRIPTION
|
|
|
814
893
|
view the recent updates for a branch
|
|
815
894
|
```
|
|
816
895
|
|
|
817
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
896
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
818
897
|
|
|
819
898
|
## `eas update:view GROUPID`
|
|
820
899
|
|
|
@@ -834,7 +913,7 @@ DESCRIPTION
|
|
|
834
913
|
update group details
|
|
835
914
|
```
|
|
836
915
|
|
|
837
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
916
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
838
917
|
|
|
839
918
|
## `eas webhook:create`
|
|
840
919
|
|
|
@@ -854,7 +933,7 @@ DESCRIPTION
|
|
|
854
933
|
create a webhook
|
|
855
934
|
```
|
|
856
935
|
|
|
857
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
936
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
858
937
|
|
|
859
938
|
## `eas webhook:delete [ID]`
|
|
860
939
|
|
|
@@ -871,7 +950,7 @@ DESCRIPTION
|
|
|
871
950
|
delete a webhook
|
|
872
951
|
```
|
|
873
952
|
|
|
874
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
953
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
875
954
|
|
|
876
955
|
## `eas webhook:list`
|
|
877
956
|
|
|
@@ -888,7 +967,7 @@ DESCRIPTION
|
|
|
888
967
|
list webhooks
|
|
889
968
|
```
|
|
890
969
|
|
|
891
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
970
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
892
971
|
|
|
893
972
|
## `eas webhook:update`
|
|
894
973
|
|
|
@@ -909,7 +988,7 @@ DESCRIPTION
|
|
|
909
988
|
update a webhook
|
|
910
989
|
```
|
|
911
990
|
|
|
912
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
991
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
913
992
|
|
|
914
993
|
## `eas webhook:view ID`
|
|
915
994
|
|
|
@@ -926,5 +1005,20 @@ DESCRIPTION
|
|
|
926
1005
|
view a webhook
|
|
927
1006
|
```
|
|
928
1007
|
|
|
929
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
1008
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.50.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1009
|
+
|
|
1010
|
+
## `eas whoami`
|
|
1011
|
+
|
|
1012
|
+
show the username you are logged in as
|
|
1013
|
+
|
|
1014
|
+
```
|
|
1015
|
+
USAGE
|
|
1016
|
+
$ eas whoami
|
|
1017
|
+
|
|
1018
|
+
DESCRIPTION
|
|
1019
|
+
show the username you are logged in as
|
|
1020
|
+
|
|
1021
|
+
ALIASES
|
|
1022
|
+
$ eas whoami
|
|
1023
|
+
```
|
|
930
1024
|
<!-- commandsstop -->
|
package/build/build/build.d.ts
CHANGED
|
@@ -20,8 +20,12 @@ interface Builder<TPlatform extends Platform, Credentials, TJob extends Job> {
|
|
|
20
20
|
}
|
|
21
21
|
export declare type BuildRequestSender = () => Promise<BuildFragment | undefined>;
|
|
22
22
|
export declare function prepareBuildRequestForPlatformAsync<TPlatform extends Platform, Credentials, TJob extends Job>(builder: Builder<TPlatform, Credentials, TJob>): Promise<BuildRequestSender>;
|
|
23
|
-
|
|
23
|
+
declare type MaybeBuildFragment = BuildFragment | null;
|
|
24
|
+
export declare function waitForBuildEndAsync({ buildIds, accountName }: {
|
|
25
|
+
buildIds: string[];
|
|
26
|
+
accountName: string;
|
|
27
|
+
}, { timeoutSec, intervalSec, }?: {
|
|
24
28
|
timeoutSec?: number | undefined;
|
|
25
29
|
intervalSec?: number | undefined;
|
|
26
|
-
}): Promise<
|
|
30
|
+
}): Promise<MaybeBuildFragment[]>;
|
|
27
31
|
export {};
|