@varius.io/framework 13.12.0 → 13.12.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.
@@ -118,12 +118,12 @@ async function main() {
118
118
  const oldRejectUnauthorized = process.env.NODE_TLS_REJECT_UNAUTHORIZED;
119
119
  process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
120
120
 
121
- const newEnv = await setupEnv();
121
+ const resolvedEnv = await resolveEnv();
122
122
 
123
123
  // reset self-signed cert permission, for the child process
124
124
  process.env.NODE_TLS_REJECT_UNAUTHORIZED = oldRejectUnauthorized;
125
125
 
126
- process.env = { ...process.env, ...newEnv };
126
+ process.env = { ...process.env, ...resolvedEnv };
127
127
 
128
128
  for (const key of Object.keys(process.env)) {
129
129
  if (key.startsWith("VAULT_ENV")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varius.io/framework",
3
- "version": "13.12.0",
3
+ "version": "13.12.1",
4
4
  "main": "./build/index.js",
5
5
  "type": "./build/index.d.ts",
6
6
  "scripts": {