@expo/eas-json 16.25.0 → 16.30.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/resolver.js +1 -2
- package/build/log.js +1 -2
- package/build/submit/resolver.js +2 -3
- package/package.json +8 -8
package/build/build/resolver.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolveBuildProfile =
|
|
3
|
+
exports.resolveBuildProfile = resolveBuildProfile;
|
|
4
4
|
const errors_1 = require("../errors");
|
|
5
5
|
const schema_1 = require("./schema");
|
|
6
6
|
function resolveBuildProfile({ easJson, platform, profileName, }) {
|
|
@@ -12,7 +12,6 @@ function resolveBuildProfile({ easJson, platform, profileName, }) {
|
|
|
12
12
|
const withoutDefaults = mergeProfiles(base, easJsonProfile[platform] ?? {});
|
|
13
13
|
return mergeProfiles(getDefaultProfile(platform), withoutDefaults);
|
|
14
14
|
}
|
|
15
|
-
exports.resolveBuildProfile = resolveBuildProfile;
|
|
16
15
|
function resolveProfile({ easJson, profileName, depth = 0, }) {
|
|
17
16
|
if (depth >= 5) {
|
|
18
17
|
throw new Error('Too long chain of profile extensions, make sure "extends" keys do not make a cycle');
|
package/build/log.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.link =
|
|
3
|
+
exports.link = link;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
6
6
|
const terminal_link_1 = tslib_1.__importDefault(require("terminal-link"));
|
|
@@ -15,4 +15,3 @@ function link(url, { text = url, dim = true } = {}) {
|
|
|
15
15
|
}
|
|
16
16
|
return dim ? chalk_1.default.dim(output) : output;
|
|
17
17
|
}
|
|
18
|
-
exports.link = link;
|
package/build/submit/resolver.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.resolveSubmitProfile = resolveSubmitProfile;
|
|
4
|
+
exports.getDefaultProfile = getDefaultProfile;
|
|
4
5
|
const tslib_1 = require("tslib");
|
|
5
6
|
const eas_build_job_1 = require("@expo/eas-build-job");
|
|
6
7
|
const env_string_1 = tslib_1.__importDefault(require("env-string"));
|
|
@@ -26,7 +27,6 @@ function resolveSubmitProfile({ easJson, platform, profileName, }) {
|
|
|
26
27
|
}
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
|
-
exports.resolveSubmitProfile = resolveSubmitProfile;
|
|
30
30
|
function resolveProfile({ easJson, profileName, depth = 0, platform, }) {
|
|
31
31
|
if (depth >= 5) {
|
|
32
32
|
throw new Error('Too long chain of profile extensions, make sure "extends" keys do not make a cycle');
|
|
@@ -65,7 +65,6 @@ function getDefaultProfile(platform) {
|
|
|
65
65
|
const Schema = platform === eas_build_job_1.Platform.ANDROID ? schema_1.AndroidSubmitProfileSchema : schema_1.ResolvedIosSubmitProfileSchema;
|
|
66
66
|
return Schema.validate({}, { allowUnknown: false, abortEarly: false, convert: true }).value;
|
|
67
67
|
}
|
|
68
|
-
exports.getDefaultProfile = getDefaultProfile;
|
|
69
68
|
function evaluateFields(platform, profile) {
|
|
70
69
|
const fields = platform === eas_build_job_1.Platform.ANDROID
|
|
71
70
|
? types_1.AndroidSubmitProfileFieldsToEvaluate
|
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": "16.
|
|
4
|
+
"version": "16.30.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@types/fs-extra": "11.0.4",
|
|
24
24
|
"memfs": "3.4.13",
|
|
25
25
|
"rimraf": "3.0.2",
|
|
26
|
-
"typescript": "5.
|
|
26
|
+
"typescript": "5.5.4"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": ">=18.0.0"
|
|
@@ -32,7 +32,11 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"main": "build/index.js",
|
|
34
34
|
"types": "build/index.d.ts",
|
|
35
|
-
"repository":
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/expo/eas-cli.git",
|
|
38
|
+
"directory": "packages/eas-json"
|
|
39
|
+
},
|
|
36
40
|
"scripts": {
|
|
37
41
|
"build": "tsc --project tsconfig.build.json",
|
|
38
42
|
"build-allow-unused": "tsc --project tsconfig.allowUnused.json",
|
|
@@ -50,9 +54,5 @@
|
|
|
50
54
|
"publishConfig": {
|
|
51
55
|
"access": "public"
|
|
52
56
|
},
|
|
53
|
-
"
|
|
54
|
-
"node": "20.11.0",
|
|
55
|
-
"yarn": "1.22.21"
|
|
56
|
-
},
|
|
57
|
-
"gitHead": "45481f9758ef94818b46540c4ff3820e556bd3f8"
|
|
57
|
+
"gitHead": "1c317026539827ed6f95827e1f6990bd080a6920"
|
|
58
58
|
}
|