@nattyjs/core 0.0.1-beta.53 → 0.0.1-beta.55

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/index.cjs CHANGED
@@ -1336,7 +1336,7 @@ function setEnvInfo(envTsDefinition, envValueInfo) {
1336
1336
  if (envTsDefinition && envValueInfo) {
1337
1337
  common.commonContainer.setEnvTsDefinition(envTsDefinition);
1338
1338
  Object.keys(envValueInfo).forEach((key) => {
1339
- if (process.env[key])
1339
+ if (envValueInfo[key])
1340
1340
  process.env[key] = envValueInfo[key];
1341
1341
  });
1342
1342
  }
package/dist/index.mjs CHANGED
@@ -1334,7 +1334,7 @@ function setEnvInfo(envTsDefinition, envValueInfo) {
1334
1334
  if (envTsDefinition && envValueInfo) {
1335
1335
  commonContainer.setEnvTsDefinition(envTsDefinition);
1336
1336
  Object.keys(envValueInfo).forEach((key) => {
1337
- if (process.env[key])
1337
+ if (envValueInfo[key])
1338
1338
  process.env[key] = envValueInfo[key];
1339
1339
  });
1340
1340
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/core",
3
- "version": "0.0.1-beta.53",
3
+ "version": "0.0.1-beta.55",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "ajayojha",
@@ -18,7 +18,7 @@
18
18
  "reflect-metadata": "0.2.2",
19
19
  "tsyringe": "^4.7.0",
20
20
  "path-to-regexp": "6.2.1",
21
- "@nattyjs/common": "0.0.1-beta.53"
21
+ "@nattyjs/common": "0.0.1-beta.55"
22
22
  },
23
23
  "devDependencies": {
24
24
  "unbuild": "1.2.1"