@expo/eas-json 14.3.0 → 14.5.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/build/build/schema.js
CHANGED
|
@@ -76,6 +76,13 @@ const AndroidBuildProfileSchema = PlatformBuildProfileSchema.concat(joi_1.defaul
|
|
|
76
76
|
buildType: joi_1.default.string().valid('apk', 'app-bundle'),
|
|
77
77
|
// versions
|
|
78
78
|
autoIncrement: joi_1.default.alternatives().try(joi_1.default.boolean(), joi_1.default.string().valid('version', 'versionCode')),
|
|
79
|
+
keystoreName: joi_1.default.when('credentialsSource', {
|
|
80
|
+
is: 'remote',
|
|
81
|
+
then: joi_1.default.string(),
|
|
82
|
+
otherwise: joi_1.default.forbidden().messages({
|
|
83
|
+
'any.unknown': 'keystoreName is not allowed when credentialsSource is not remote',
|
|
84
|
+
}),
|
|
85
|
+
}),
|
|
79
86
|
}));
|
|
80
87
|
const IosBuildProfileSchema = PlatformBuildProfileSchema.concat(joi_1.default.object({
|
|
81
88
|
// builder
|
package/build/build/types.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export interface AndroidBuildProfile extends PlatformBuildProfile {
|
|
|
59
59
|
gradleCommand?: string;
|
|
60
60
|
buildType?: Android.BuildType.APK | Android.BuildType.APP_BUNDLE;
|
|
61
61
|
autoIncrement?: AndroidVersionAutoIncrement;
|
|
62
|
+
keystoreName?: string;
|
|
62
63
|
}
|
|
63
64
|
export interface IosBuildProfile extends PlatformBuildProfile {
|
|
64
65
|
image?: Ios.BuilderEnvironment['image'];
|
package/build/submit/resolver.js
CHANGED
|
@@ -28,7 +28,7 @@ function resolveSubmitProfile({ easJson, platform, profileName, }) {
|
|
|
28
28
|
}
|
|
29
29
|
exports.resolveSubmitProfile = resolveSubmitProfile;
|
|
30
30
|
function resolveProfile({ easJson, profileName, depth = 0, platform, }) {
|
|
31
|
-
if (depth >=
|
|
31
|
+
if (depth >= 5) {
|
|
32
32
|
throw new Error('Too long chain of profile extensions, make sure "extends" keys do not make a cycle');
|
|
33
33
|
}
|
|
34
34
|
const profile = easJson.submit?.[profileName];
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/eas-json",
|
|
3
3
|
"description": "A library for interacting with eas.json",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.5.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/code-frame": "7.23.5",
|
|
9
|
-
"@expo/eas-build-job": "1.0.
|
|
9
|
+
"@expo/eas-build-job": "1.0.165",
|
|
10
10
|
"chalk": "4.1.2",
|
|
11
11
|
"env-string": "1.0.1",
|
|
12
12
|
"fs-extra": "11.2.0",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"node": "20.11.0",
|
|
55
55
|
"yarn": "1.22.21"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "f75ef221542900d492737f83ce24b81bbafdc290"
|
|
58
58
|
}
|