@expo/eas-json 14.3.0 → 14.3.1
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 +7 -0
- package/build/build/types.d.ts +1 -0
- package/package.json +2 -2
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/eas-json",
|
|
3
3
|
"description": "A library for interacting with eas.json",
|
|
4
|
-
"version": "14.3.
|
|
4
|
+
"version": "14.3.1",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"node": "20.11.0",
|
|
55
55
|
"yarn": "1.22.21"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "38ae8b68f1b6d599cfcb2f49c21475ccbd30253e"
|
|
58
58
|
}
|