@expo/steps 18.5.0 → 18.8.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/dist/BuildConfig.js +3 -1
- package/package.json +3 -3
package/dist/BuildConfig.js
CHANGED
|
@@ -92,7 +92,9 @@ const BuildFunctionCallSchema = joi_1.default.object({
|
|
|
92
92
|
name: joi_1.default.string(),
|
|
93
93
|
workingDirectory: joi_1.default.string(),
|
|
94
94
|
shell: joi_1.default.string(),
|
|
95
|
-
env: joi_1.default.object().pattern(joi_1.default.string(), joi_1.default.
|
|
95
|
+
env: joi_1.default.object().pattern(joi_1.default.string(), joi_1.default.alternatives()
|
|
96
|
+
.try(joi_1.default.number().strict(), joi_1.default.string().allow(''))
|
|
97
|
+
.custom(value => String(value))),
|
|
96
98
|
if: joi_1.default.string(),
|
|
97
99
|
timeout_minutes: joi_1.default.number().positive(),
|
|
98
100
|
// Internal field for metrics collection. Not documented publicly.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/steps",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.8.0",
|
|
4
4
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Expo <support@expo.io>",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"clean": "rimraf node_modules dist coverage \"*.tsbuildinfo\""
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@expo/eas-build-job": "18.
|
|
30
|
+
"@expo/eas-build-job": "18.8.0",
|
|
31
31
|
"@expo/logger": "18.5.0",
|
|
32
32
|
"@expo/spawn-async": "^1.7.2",
|
|
33
33
|
"arg": "^5.0.2",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=18"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "7c7fad4a13a8a45bdca698fc0fd4c08b17bb189c"
|
|
60
60
|
}
|