@genesislcap/build-kit 14.250.0 → 14.251.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/utils/env.js +1 -1
- package/package.json +3 -3
package/dist/utils/env.js
CHANGED
|
@@ -59,7 +59,6 @@ const loadEnvFiles = (ctx) => {
|
|
|
59
59
|
};
|
|
60
60
|
exports.loadEnvFiles = loadEnvFiles;
|
|
61
61
|
const setEnvVars = (ctx) => {
|
|
62
|
-
(0, exports.loadEnvFiles)(ctx);
|
|
63
62
|
const { env = '' } = ctx.cli.options;
|
|
64
63
|
const envCombined = Array.isArray(env) ? env.join(',') : env;
|
|
65
64
|
const vars = envCombined.split(',');
|
|
@@ -73,6 +72,7 @@ const setEnvVars = (ctx) => {
|
|
|
73
72
|
process.env[key] = resolved;
|
|
74
73
|
}
|
|
75
74
|
});
|
|
75
|
+
(0, exports.loadEnvFiles)(ctx);
|
|
76
76
|
};
|
|
77
77
|
exports.setEnvVars = setEnvVars;
|
|
78
78
|
// Given env variable name patterns and HTTP config, return a define plugin config
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/build-kit",
|
|
3
3
|
"description": "Build utilities & types",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.251.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@esbuild-kit/cjs-loader": "2.4.2",
|
|
40
|
-
"@genesislcap/foundation-testing": "14.
|
|
40
|
+
"@genesislcap/foundation-testing": "14.251.0",
|
|
41
41
|
"@types/http-proxy": "^1.17.8",
|
|
42
42
|
"@types/node": "^20.8.7",
|
|
43
43
|
"tsm": "^2.2.1",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "2ab61e47fbc752e88ecb2d83d794c590a8093829"
|
|
56
56
|
}
|