eas-cli 7.8.5 → 9.0.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 +70 -62
- package/build/build/android/build.js +1 -0
- package/build/build/android/graphql.js +0 -1
- package/build/build/android/prepareJob.js +0 -2
- package/build/build/android/syncProjectConfiguration.d.ts +3 -1
- package/build/build/android/syncProjectConfiguration.js +2 -2
- package/build/build/createContext.d.ts +2 -1
- package/build/build/createContext.js +2 -1
- package/build/build/ios/build.js +1 -0
- package/build/build/ios/graphql.js +0 -1
- package/build/build/ios/prepareJob.js +0 -2
- package/build/build/ios/syncProjectConfiguration.d.ts +3 -1
- package/build/build/ios/syncProjectConfiguration.js +2 -2
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +11 -25
- package/build/build/runBuildAndSubmit.d.ts +1 -0
- package/build/build/runBuildAndSubmit.js +4 -3
- package/build/build/utils/formatBuild.js +0 -4
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +11 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +8 -3
- package/build/commands/account/login.js +0 -1
- package/build/commands/build/configure.js +8 -2
- package/build/commands/build/index.d.ts +1 -0
- package/build/commands/build/index.js +5 -0
- package/build/commands/build/inspect.js +1 -0
- package/build/commands/build/internal.js +1 -0
- package/build/commands/credentials/configure-build.js +1 -1
- package/build/commands/project/onboarding.d.ts +15 -0
- package/build/commands/project/onboarding.js +154 -0
- package/build/commands/update/configure.js +1 -0
- package/build/commands/update/index.js +3 -10
- package/build/commands/update/roll-back-to-embedded.js +3 -11
- package/build/credentials/context.d.ts +2 -0
- package/build/credentials/context.js +3 -1
- package/build/credentials/errors.d.ts +6 -0
- package/build/credentials/errors.js +14 -1
- package/build/credentials/ios/IosCredentialsProvider.js +6 -1
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +9 -4
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +1 -0
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +22 -5
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +17 -5
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +2 -1
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +4 -3
- package/build/credentials/manager/SetUpIosBuildCredentials.js +1 -1
- package/build/graphql/generated.d.ts +648 -184
- package/build/graphql/generated.js +63 -17
- package/build/graphql/mutations/UserPreferencesMutation.d.ts +9 -0
- package/build/graphql/mutations/UserPreferencesMutation.js +44 -0
- package/build/graphql/queries/UserQuery.js +10 -0
- package/build/graphql/types/App.js +7 -0
- package/build/graphql/types/Build.js +0 -1
- package/build/onboarding/git.d.ts +10 -0
- package/build/onboarding/git.js +57 -0
- package/build/onboarding/installDependencies.d.ts +3 -0
- package/build/onboarding/installDependencies.js +20 -0
- package/build/onboarding/runCommand.d.ts +7 -0
- package/build/onboarding/runCommand.js +41 -0
- package/build/project/projectUtils.d.ts +1 -1
- package/build/project/projectUtils.js +6 -12
- package/build/project/publish.d.ts +3 -2
- package/build/project/publish.js +4 -10
- package/build/project/resolveRuntimeVersionAsync.d.ts +3 -2
- package/build/project/resolveRuntimeVersionAsync.js +2 -9
- package/build/rollout/actions/CreateRollout.js +1 -0
- package/build/update/android/UpdatesModule.d.ts +7 -3
- package/build/update/android/UpdatesModule.js +3 -19
- package/build/update/configure.d.ts +3 -2
- package/build/update/configure.js +17 -5
- package/build/update/ios/UpdatesModule.d.ts +8 -3
- package/build/update/ios/UpdatesModule.js +3 -20
- package/build/update/utils.d.ts +0 -2
- package/build/update/utils.js +2 -22
- package/build/user/SessionManager.js +1 -1
- package/build/utils/expoUpdatesCli.d.ts +4 -1
- package/build/utils/expoUpdatesCli.js +5 -2
- package/build/vcs/clients/git.d.ts +2 -0
- package/build/vcs/clients/git.js +52 -27
- package/build/vcs/git.d.ts +6 -4
- package/build/vcs/git.js +13 -6
- package/oclif.manifest.json +30 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -128,7 +128,10 @@ log in with your Expo account
|
|
|
128
128
|
|
|
129
129
|
```
|
|
130
130
|
USAGE
|
|
131
|
-
$ eas account:login
|
|
131
|
+
$ eas account:login [-s]
|
|
132
|
+
|
|
133
|
+
FLAGS
|
|
134
|
+
-s, --sso Login with SSO
|
|
132
135
|
|
|
133
136
|
DESCRIPTION
|
|
134
137
|
log in with your Expo account
|
|
@@ -137,7 +140,7 @@ ALIASES
|
|
|
137
140
|
$ eas login
|
|
138
141
|
```
|
|
139
142
|
|
|
140
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/
|
|
143
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
141
144
|
|
|
142
145
|
## `eas account:logout`
|
|
143
146
|
|
|
@@ -154,7 +157,7 @@ ALIASES
|
|
|
154
157
|
$ eas logout
|
|
155
158
|
```
|
|
156
159
|
|
|
157
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/
|
|
160
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
158
161
|
|
|
159
162
|
## `eas account:view`
|
|
160
163
|
|
|
@@ -171,7 +174,7 @@ ALIASES
|
|
|
171
174
|
$ eas whoami
|
|
172
175
|
```
|
|
173
176
|
|
|
174
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/
|
|
177
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
175
178
|
|
|
176
179
|
## `eas analytics [STATUS]`
|
|
177
180
|
|
|
@@ -185,7 +188,7 @@ DESCRIPTION
|
|
|
185
188
|
display or change analytics settings
|
|
186
189
|
```
|
|
187
190
|
|
|
188
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/
|
|
191
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
189
192
|
|
|
190
193
|
## `eas autocomplete [SHELL]`
|
|
191
194
|
|
|
@@ -237,7 +240,7 @@ DESCRIPTION
|
|
|
237
240
|
create a branch
|
|
238
241
|
```
|
|
239
242
|
|
|
240
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/
|
|
243
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
241
244
|
|
|
242
245
|
## `eas branch:delete [NAME]`
|
|
243
246
|
|
|
@@ -258,7 +261,7 @@ DESCRIPTION
|
|
|
258
261
|
delete a branch
|
|
259
262
|
```
|
|
260
263
|
|
|
261
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
264
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
262
265
|
|
|
263
266
|
## `eas branch:list`
|
|
264
267
|
|
|
@@ -278,7 +281,7 @@ DESCRIPTION
|
|
|
278
281
|
list all branches
|
|
279
282
|
```
|
|
280
283
|
|
|
281
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/
|
|
284
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
282
285
|
|
|
283
286
|
## `eas branch:rename`
|
|
284
287
|
|
|
@@ -298,7 +301,7 @@ DESCRIPTION
|
|
|
298
301
|
rename a branch
|
|
299
302
|
```
|
|
300
303
|
|
|
301
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
304
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
302
305
|
|
|
303
306
|
## `eas branch:view [NAME]`
|
|
304
307
|
|
|
@@ -321,7 +324,7 @@ DESCRIPTION
|
|
|
321
324
|
view a branch
|
|
322
325
|
```
|
|
323
326
|
|
|
324
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/
|
|
327
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
325
328
|
|
|
326
329
|
## `eas build`
|
|
327
330
|
|
|
@@ -331,7 +334,7 @@ start a build
|
|
|
331
334
|
USAGE
|
|
332
335
|
$ eas build [-p android|ios|all] [-e <value>] [--local] [--output <value>] [--wait] [--clear-cache]
|
|
333
336
|
[--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--build-logger-level
|
|
334
|
-
trace|debug|info|warn|error|fatal] [--json --non-interactive]
|
|
337
|
+
trace|debug|info|warn|error|fatal] [--freeze-credentials] [--json --non-interactive]
|
|
335
338
|
|
|
336
339
|
FLAGS
|
|
337
340
|
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to
|
|
@@ -345,6 +348,8 @@ FLAGS
|
|
|
345
348
|
--build-logger-level=(trace|debug|info|warn|error|fatal) The level of logs to output during the build process.
|
|
346
349
|
Defaults to "info".
|
|
347
350
|
--clear-cache Clear cache before the build
|
|
351
|
+
--freeze-credentials Prevent the build from updating credentials in
|
|
352
|
+
non-interactive mode
|
|
348
353
|
--json Enable JSON output, non-JSON messages will be printed to
|
|
349
354
|
stderr.
|
|
350
355
|
--local Run build locally [experimental]
|
|
@@ -356,7 +361,7 @@ DESCRIPTION
|
|
|
356
361
|
start a build
|
|
357
362
|
```
|
|
358
363
|
|
|
359
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/
|
|
364
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
360
365
|
|
|
361
366
|
## `eas build:cancel [BUILD_ID]`
|
|
362
367
|
|
|
@@ -375,7 +380,7 @@ DESCRIPTION
|
|
|
375
380
|
cancel a build
|
|
376
381
|
```
|
|
377
382
|
|
|
378
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
383
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
379
384
|
|
|
380
385
|
## `eas build:configure`
|
|
381
386
|
|
|
@@ -392,7 +397,7 @@ DESCRIPTION
|
|
|
392
397
|
configure the project to support EAS Build
|
|
393
398
|
```
|
|
394
399
|
|
|
395
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
400
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
396
401
|
|
|
397
402
|
## `eas build:delete [BUILD_ID]`
|
|
398
403
|
|
|
@@ -411,7 +416,7 @@ DESCRIPTION
|
|
|
411
416
|
delete a build
|
|
412
417
|
```
|
|
413
418
|
|
|
414
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
419
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
415
420
|
|
|
416
421
|
## `eas build:inspect`
|
|
417
422
|
|
|
@@ -446,7 +451,7 @@ DESCRIPTION
|
|
|
446
451
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
447
452
|
```
|
|
448
453
|
|
|
449
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/
|
|
454
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
450
455
|
|
|
451
456
|
## `eas build:list`
|
|
452
457
|
|
|
@@ -487,7 +492,7 @@ DESCRIPTION
|
|
|
487
492
|
list all builds for your project
|
|
488
493
|
```
|
|
489
494
|
|
|
490
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/
|
|
495
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
491
496
|
|
|
492
497
|
## `eas build:resign`
|
|
493
498
|
|
|
@@ -513,7 +518,7 @@ DESCRIPTION
|
|
|
513
518
|
re-sign a build archive
|
|
514
519
|
```
|
|
515
520
|
|
|
516
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/
|
|
521
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
517
522
|
|
|
518
523
|
## `eas build:run`
|
|
519
524
|
|
|
@@ -539,7 +544,7 @@ DESCRIPTION
|
|
|
539
544
|
run simulator/emulator builds from eas-cli
|
|
540
545
|
```
|
|
541
546
|
|
|
542
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/
|
|
547
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
543
548
|
|
|
544
549
|
## `eas build:submit`
|
|
545
550
|
|
|
@@ -589,7 +594,7 @@ DESCRIPTION
|
|
|
589
594
|
get the latest version from EAS servers
|
|
590
595
|
```
|
|
591
596
|
|
|
592
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/
|
|
597
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
593
598
|
|
|
594
599
|
## `eas build:version:set`
|
|
595
600
|
|
|
@@ -608,7 +613,7 @@ DESCRIPTION
|
|
|
608
613
|
update version of an app
|
|
609
614
|
```
|
|
610
615
|
|
|
611
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/
|
|
616
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
612
617
|
|
|
613
618
|
## `eas build:version:sync`
|
|
614
619
|
|
|
@@ -627,7 +632,7 @@ DESCRIPTION
|
|
|
627
632
|
update a version in native code with a value stored on EAS servers
|
|
628
633
|
```
|
|
629
634
|
|
|
630
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/
|
|
635
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
631
636
|
|
|
632
637
|
## `eas build:view [BUILD_ID]`
|
|
633
638
|
|
|
@@ -644,7 +649,7 @@ DESCRIPTION
|
|
|
644
649
|
view a build for your project
|
|
645
650
|
```
|
|
646
651
|
|
|
647
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/
|
|
652
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
648
653
|
|
|
649
654
|
## `eas channel:create [NAME]`
|
|
650
655
|
|
|
@@ -665,7 +670,7 @@ DESCRIPTION
|
|
|
665
670
|
create a channel
|
|
666
671
|
```
|
|
667
672
|
|
|
668
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/
|
|
673
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
669
674
|
|
|
670
675
|
## `eas channel:edit [NAME]`
|
|
671
676
|
|
|
@@ -687,7 +692,7 @@ DESCRIPTION
|
|
|
687
692
|
point a channel at a new branch
|
|
688
693
|
```
|
|
689
694
|
|
|
690
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
695
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
691
696
|
|
|
692
697
|
## `eas channel:list`
|
|
693
698
|
|
|
@@ -707,7 +712,7 @@ DESCRIPTION
|
|
|
707
712
|
list all channels
|
|
708
713
|
```
|
|
709
714
|
|
|
710
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/
|
|
715
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
711
716
|
|
|
712
717
|
## `eas channel:rollout [CHANNEL]`
|
|
713
718
|
|
|
@@ -739,7 +744,7 @@ DESCRIPTION
|
|
|
739
744
|
Roll a new branch out on a channel incrementally.
|
|
740
745
|
```
|
|
741
746
|
|
|
742
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/
|
|
747
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
743
748
|
|
|
744
749
|
## `eas channel:view [NAME]`
|
|
745
750
|
|
|
@@ -762,7 +767,7 @@ DESCRIPTION
|
|
|
762
767
|
view a channel
|
|
763
768
|
```
|
|
764
769
|
|
|
765
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/
|
|
770
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
766
771
|
|
|
767
772
|
## `eas config`
|
|
768
773
|
|
|
@@ -783,7 +788,7 @@ DESCRIPTION
|
|
|
783
788
|
display project configuration (app.json + eas.json)
|
|
784
789
|
```
|
|
785
790
|
|
|
786
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/
|
|
791
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/config.ts)_
|
|
787
792
|
|
|
788
793
|
## `eas credentials`
|
|
789
794
|
|
|
@@ -800,7 +805,7 @@ DESCRIPTION
|
|
|
800
805
|
manage credentials
|
|
801
806
|
```
|
|
802
807
|
|
|
803
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/
|
|
808
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
804
809
|
|
|
805
810
|
## `eas credentials:configure-build`
|
|
806
811
|
|
|
@@ -818,7 +823,7 @@ DESCRIPTION
|
|
|
818
823
|
Set up credentials for building your project.
|
|
819
824
|
```
|
|
820
825
|
|
|
821
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/
|
|
826
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
822
827
|
|
|
823
828
|
## `eas device:create`
|
|
824
829
|
|
|
@@ -832,7 +837,7 @@ DESCRIPTION
|
|
|
832
837
|
register new Apple Devices to use for internal distribution
|
|
833
838
|
```
|
|
834
839
|
|
|
835
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/
|
|
840
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
836
841
|
|
|
837
842
|
## `eas device:delete`
|
|
838
843
|
|
|
@@ -852,7 +857,7 @@ DESCRIPTION
|
|
|
852
857
|
remove a registered device from your account
|
|
853
858
|
```
|
|
854
859
|
|
|
855
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
860
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
856
861
|
|
|
857
862
|
## `eas device:list`
|
|
858
863
|
|
|
@@ -873,7 +878,7 @@ DESCRIPTION
|
|
|
873
878
|
list all registered devices for your account
|
|
874
879
|
```
|
|
875
880
|
|
|
876
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/
|
|
881
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
877
882
|
|
|
878
883
|
## `eas device:rename`
|
|
879
884
|
|
|
@@ -894,7 +899,7 @@ DESCRIPTION
|
|
|
894
899
|
rename a registered device
|
|
895
900
|
```
|
|
896
901
|
|
|
897
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
902
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
898
903
|
|
|
899
904
|
## `eas device:view [UDID]`
|
|
900
905
|
|
|
@@ -908,7 +913,7 @@ DESCRIPTION
|
|
|
908
913
|
view a device for your project
|
|
909
914
|
```
|
|
910
915
|
|
|
911
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/
|
|
916
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
912
917
|
|
|
913
918
|
## `eas diagnostics`
|
|
914
919
|
|
|
@@ -922,7 +927,7 @@ DESCRIPTION
|
|
|
922
927
|
display environment info
|
|
923
928
|
```
|
|
924
929
|
|
|
925
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/
|
|
930
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
926
931
|
|
|
927
932
|
## `eas help [COMMAND]`
|
|
928
933
|
|
|
@@ -970,7 +975,10 @@ log in with your Expo account
|
|
|
970
975
|
|
|
971
976
|
```
|
|
972
977
|
USAGE
|
|
973
|
-
$ eas login
|
|
978
|
+
$ eas login [-s]
|
|
979
|
+
|
|
980
|
+
FLAGS
|
|
981
|
+
-s, --sso Login with SSO
|
|
974
982
|
|
|
975
983
|
DESCRIPTION
|
|
976
984
|
log in with your Expo account
|
|
@@ -1010,7 +1018,7 @@ DESCRIPTION
|
|
|
1010
1018
|
validate the local store configuration
|
|
1011
1019
|
```
|
|
1012
1020
|
|
|
1013
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/
|
|
1021
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1014
1022
|
|
|
1015
1023
|
## `eas metadata:pull`
|
|
1016
1024
|
|
|
@@ -1027,7 +1035,7 @@ DESCRIPTION
|
|
|
1027
1035
|
generate the local store configuration from the app stores
|
|
1028
1036
|
```
|
|
1029
1037
|
|
|
1030
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
1038
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1031
1039
|
|
|
1032
1040
|
## `eas metadata:push`
|
|
1033
1041
|
|
|
@@ -1044,7 +1052,7 @@ DESCRIPTION
|
|
|
1044
1052
|
sync the local store configuration to the app stores
|
|
1045
1053
|
```
|
|
1046
1054
|
|
|
1047
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1055
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1048
1056
|
|
|
1049
1057
|
## `eas open`
|
|
1050
1058
|
|
|
@@ -1058,7 +1066,7 @@ DESCRIPTION
|
|
|
1058
1066
|
open the project page in a web browser
|
|
1059
1067
|
```
|
|
1060
1068
|
|
|
1061
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/
|
|
1069
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/open.ts)_
|
|
1062
1070
|
|
|
1063
1071
|
## `eas project:info`
|
|
1064
1072
|
|
|
@@ -1072,7 +1080,7 @@ DESCRIPTION
|
|
|
1072
1080
|
information about the current project
|
|
1073
1081
|
```
|
|
1074
1082
|
|
|
1075
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/
|
|
1083
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1076
1084
|
|
|
1077
1085
|
## `eas project:init`
|
|
1078
1086
|
|
|
@@ -1094,7 +1102,7 @@ ALIASES
|
|
|
1094
1102
|
$ eas init
|
|
1095
1103
|
```
|
|
1096
1104
|
|
|
1097
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/
|
|
1105
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1098
1106
|
|
|
1099
1107
|
## `eas secret:create`
|
|
1100
1108
|
|
|
@@ -1117,7 +1125,7 @@ DESCRIPTION
|
|
|
1117
1125
|
create an environment secret on the current project or owner account
|
|
1118
1126
|
```
|
|
1119
1127
|
|
|
1120
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1128
|
+
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1121
1129
|
|
|
1122
1130
|
## `eas secret:delete`
|
|
1123
1131
|
|
|
@@ -1135,7 +1143,7 @@ DESCRIPTION
|
|
|
1135
1143
|
delete an environment secret by ID
|
|
1136
1144
|
```
|
|
1137
1145
|
|
|
1138
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1146
|
+
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1139
1147
|
|
|
1140
1148
|
## `eas secret:list`
|
|
1141
1149
|
|
|
@@ -1149,7 +1157,7 @@ DESCRIPTION
|
|
|
1149
1157
|
list environment secrets available for your current app
|
|
1150
1158
|
```
|
|
1151
1159
|
|
|
1152
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1160
|
+
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1153
1161
|
|
|
1154
1162
|
## `eas secret:push`
|
|
1155
1163
|
|
|
@@ -1169,7 +1177,7 @@ DESCRIPTION
|
|
|
1169
1177
|
read environment secrets from env file and store on the server
|
|
1170
1178
|
```
|
|
1171
1179
|
|
|
1172
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1180
|
+
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1173
1181
|
|
|
1174
1182
|
## `eas submit`
|
|
1175
1183
|
|
|
@@ -1200,7 +1208,7 @@ ALIASES
|
|
|
1200
1208
|
$ eas build:submit
|
|
1201
1209
|
```
|
|
1202
1210
|
|
|
1203
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/
|
|
1211
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1204
1212
|
|
|
1205
1213
|
## `eas update`
|
|
1206
1214
|
|
|
@@ -1233,7 +1241,7 @@ DESCRIPTION
|
|
|
1233
1241
|
publish an update group
|
|
1234
1242
|
```
|
|
1235
1243
|
|
|
1236
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/
|
|
1244
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1237
1245
|
|
|
1238
1246
|
## `eas update:configure`
|
|
1239
1247
|
|
|
@@ -1251,7 +1259,7 @@ DESCRIPTION
|
|
|
1251
1259
|
configure the project to support EAS Update
|
|
1252
1260
|
```
|
|
1253
1261
|
|
|
1254
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
1262
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1255
1263
|
|
|
1256
1264
|
## `eas update:delete GROUPID`
|
|
1257
1265
|
|
|
@@ -1272,7 +1280,7 @@ DESCRIPTION
|
|
|
1272
1280
|
delete all the updates in an update group
|
|
1273
1281
|
```
|
|
1274
1282
|
|
|
1275
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1283
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1276
1284
|
|
|
1277
1285
|
## `eas update:list`
|
|
1278
1286
|
|
|
@@ -1294,7 +1302,7 @@ DESCRIPTION
|
|
|
1294
1302
|
view the recent updates
|
|
1295
1303
|
```
|
|
1296
1304
|
|
|
1297
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1305
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1298
1306
|
|
|
1299
1307
|
## `eas update:republish`
|
|
1300
1308
|
|
|
@@ -1321,7 +1329,7 @@ DESCRIPTION
|
|
|
1321
1329
|
roll back to an existing update
|
|
1322
1330
|
```
|
|
1323
1331
|
|
|
1324
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/
|
|
1332
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1325
1333
|
|
|
1326
1334
|
## `eas update:roll-back-to-embedded`
|
|
1327
1335
|
|
|
@@ -1348,7 +1356,7 @@ DESCRIPTION
|
|
|
1348
1356
|
roll back to the embedded update
|
|
1349
1357
|
```
|
|
1350
1358
|
|
|
1351
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/
|
|
1359
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1352
1360
|
|
|
1353
1361
|
## `eas update:rollback`
|
|
1354
1362
|
|
|
@@ -1367,7 +1375,7 @@ DESCRIPTION
|
|
|
1367
1375
|
roll back to an embedded update or an existing update
|
|
1368
1376
|
```
|
|
1369
1377
|
|
|
1370
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/
|
|
1378
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1371
1379
|
|
|
1372
1380
|
## `eas update:view GROUPID`
|
|
1373
1381
|
|
|
@@ -1387,7 +1395,7 @@ DESCRIPTION
|
|
|
1387
1395
|
update group details
|
|
1388
1396
|
```
|
|
1389
1397
|
|
|
1390
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1398
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1391
1399
|
|
|
1392
1400
|
## `eas webhook:create`
|
|
1393
1401
|
|
|
@@ -1408,7 +1416,7 @@ DESCRIPTION
|
|
|
1408
1416
|
create a webhook
|
|
1409
1417
|
```
|
|
1410
1418
|
|
|
1411
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1419
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1412
1420
|
|
|
1413
1421
|
## `eas webhook:delete [ID]`
|
|
1414
1422
|
|
|
@@ -1428,7 +1436,7 @@ DESCRIPTION
|
|
|
1428
1436
|
delete a webhook
|
|
1429
1437
|
```
|
|
1430
1438
|
|
|
1431
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1439
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1432
1440
|
|
|
1433
1441
|
## `eas webhook:list`
|
|
1434
1442
|
|
|
@@ -1446,7 +1454,7 @@ DESCRIPTION
|
|
|
1446
1454
|
list webhooks
|
|
1447
1455
|
```
|
|
1448
1456
|
|
|
1449
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1457
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1450
1458
|
|
|
1451
1459
|
## `eas webhook:update`
|
|
1452
1460
|
|
|
@@ -1468,7 +1476,7 @@ DESCRIPTION
|
|
|
1468
1476
|
update a webhook
|
|
1469
1477
|
```
|
|
1470
1478
|
|
|
1471
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/
|
|
1479
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1472
1480
|
|
|
1473
1481
|
## `eas webhook:view ID`
|
|
1474
1482
|
|
|
@@ -1485,7 +1493,7 @@ DESCRIPTION
|
|
|
1485
1493
|
view a webhook
|
|
1486
1494
|
```
|
|
1487
1495
|
|
|
1488
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1496
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v9.0.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1489
1497
|
|
|
1490
1498
|
## `eas whoami`
|
|
1491
1499
|
|
|
@@ -11,7 +11,6 @@ function transformJob(job) {
|
|
|
11
11
|
triggeredBy: (0, graphql_1.transformBuildTrigger)(job.triggeredBy),
|
|
12
12
|
projectArchive: (0, graphql_1.transformProjectArchive)(job.projectArchive),
|
|
13
13
|
projectRootDirectory: job.projectRootDirectory,
|
|
14
|
-
releaseChannel: job.releaseChannel,
|
|
15
14
|
updates: job.updates,
|
|
16
15
|
secrets: job.secrets,
|
|
17
16
|
builderEnvironment: job.builderEnvironment,
|
|
@@ -48,7 +48,6 @@ async function prepareJobAsync(ctx, jobData) {
|
|
|
48
48
|
bun: buildProfile.bun,
|
|
49
49
|
yarn: buildProfile.yarn,
|
|
50
50
|
ndk: buildProfile.ndk,
|
|
51
|
-
expoCli: buildProfile.expoCli,
|
|
52
51
|
env: buildProfile.env,
|
|
53
52
|
},
|
|
54
53
|
cache: {
|
|
@@ -59,7 +58,6 @@ async function prepareJobAsync(ctx, jobData) {
|
|
|
59
58
|
secrets: {
|
|
60
59
|
...buildCredentials,
|
|
61
60
|
},
|
|
62
|
-
releaseChannel: buildProfile.releaseChannel,
|
|
63
61
|
updates: { channel: buildProfile.channel },
|
|
64
62
|
developmentClient: buildProfile.developmentClient,
|
|
65
63
|
gradleCommand: buildProfile.gradleCommand,
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { ExpoConfig } from '@expo/config';
|
|
2
|
+
import { Env } from '@expo/eas-build-job';
|
|
2
3
|
import { AndroidVersionAutoIncrement } from '@expo/eas-json';
|
|
3
4
|
import { Client } from '../../vcs/vcs';
|
|
4
|
-
export declare function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, }: {
|
|
5
|
+
export declare function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, env, }: {
|
|
5
6
|
projectDir: string;
|
|
6
7
|
exp: ExpoConfig;
|
|
7
8
|
localAutoIncrement?: AndroidVersionAutoIncrement;
|
|
8
9
|
vcsClient: Client;
|
|
10
|
+
env: Env | undefined;
|
|
9
11
|
}): Promise<void>;
|
|
10
12
|
export declare function cleanUpOldEasBuildGradleScriptAsync(projectDir: string): Promise<void>;
|
|
@@ -12,13 +12,13 @@ const log_1 = tslib_1.__importDefault(require("../../log"));
|
|
|
12
12
|
const projectUtils_1 = require("../../project/projectUtils");
|
|
13
13
|
const workflow_1 = require("../../project/workflow");
|
|
14
14
|
const UpdatesModule_1 = require("../../update/android/UpdatesModule");
|
|
15
|
-
async function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, }) {
|
|
15
|
+
async function syncProjectConfigurationAsync({ projectDir, exp, localAutoIncrement, vcsClient, env, }) {
|
|
16
16
|
const workflow = await (0, workflow_1.resolveWorkflowAsync)(projectDir, eas_build_job_1.Platform.ANDROID, vcsClient);
|
|
17
17
|
const versionBumpStrategy = resolveVersionBumpStrategy(localAutoIncrement !== null && localAutoIncrement !== void 0 ? localAutoIncrement : false);
|
|
18
18
|
if (workflow === eas_build_job_1.Workflow.GENERIC) {
|
|
19
19
|
await cleanUpOldEasBuildGradleScriptAsync(projectDir);
|
|
20
20
|
if ((0, projectUtils_1.isExpoUpdatesInstalled)(projectDir)) {
|
|
21
|
-
await (0, UpdatesModule_1.syncUpdatesConfigurationAsync)(projectDir, exp, workflow);
|
|
21
|
+
await (0, UpdatesModule_1.syncUpdatesConfigurationAsync)({ projectDir, exp, workflow, env });
|
|
22
22
|
}
|
|
23
23
|
await (0, version_1.bumpVersionAsync)({ projectDir, exp, bumpStrategy: versionBumpStrategy });
|
|
24
24
|
}
|
|
@@ -9,7 +9,7 @@ import { ExpoGraphqlClient } from '../commandUtils/context/contextUtils/createGr
|
|
|
9
9
|
import { CustomBuildConfigMetadata } from '../project/customBuildConfig';
|
|
10
10
|
import { Actor } from '../user/User';
|
|
11
11
|
import { Client } from '../vcs/vcs';
|
|
12
|
-
export declare function createBuildContextAsync<T extends Platform>({ buildProfileName, buildProfile, easJsonCliConfig, clearCache, localBuildOptions, nonInteractive, noWait, platform, projectDir, resourceClassFlag, message, actor, graphqlClient, analytics, vcsClient, getDynamicPrivateProjectConfigAsync, customBuildConfigMetadata, buildLoggerLevel, }: {
|
|
12
|
+
export declare function createBuildContextAsync<T extends Platform>({ buildProfileName, buildProfile, easJsonCliConfig, clearCache, localBuildOptions, nonInteractive, noWait, platform, projectDir, resourceClassFlag, message, actor, graphqlClient, analytics, vcsClient, getDynamicPrivateProjectConfigAsync, customBuildConfigMetadata, buildLoggerLevel, freezeCredentials, }: {
|
|
13
13
|
buildProfileName: string;
|
|
14
14
|
buildProfile: BuildProfile<T>;
|
|
15
15
|
easJsonCliConfig: EasJson['cli'];
|
|
@@ -28,4 +28,5 @@ export declare function createBuildContextAsync<T extends Platform>({ buildProfi
|
|
|
28
28
|
getDynamicPrivateProjectConfigAsync: DynamicConfigContextFn;
|
|
29
29
|
customBuildConfigMetadata?: CustomBuildConfigMetadata;
|
|
30
30
|
buildLoggerLevel?: LoggerLevel;
|
|
31
|
+
freezeCredentials: boolean;
|
|
31
32
|
}): Promise<BuildContext<T>>;
|