Comparing version 3.3.4 to 3.3.6
@@ -0,1 +1,11 @@ | ||
3.3.6 / 2021-03-08 | ||
================== | ||
* Added publishConfig element to package.json to prevent publishing to the wrong repository - @lorenwest | ||
3.3.5 / 2021-03-05 | ||
================== | ||
* FIX [#628](https://github.com/lorenwest/node-config/issues/628) Uncaught ReferenceError: node_env_var_name is not defined @prnake | ||
3.3.4 / 2021-02-26 | ||
@@ -2,0 +12,0 @@ ================== |
@@ -545,3 +545,3 @@ // config.js (c) 2010-2020 Loren West and other contributors | ||
// Loop through the variables to try and set environment | ||
for (node_env_var_name of node_env_var_names) { | ||
for (const node_env_var_name of node_env_var_names) { | ||
NODE_ENV = util.initParam(node_env_var_name); | ||
@@ -548,0 +548,0 @@ if (!!NODE_ENV) { |
{ | ||
"name": "config", | ||
"version": "3.3.4", | ||
"version": "3.3.6", | ||
"main": "./lib/config.js", | ||
@@ -8,2 +8,5 @@ "description": "Configuration control for production node deployments", | ||
"homepage": "http://lorenwest.github.com/node-config", | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"keywords": [ | ||
@@ -10,0 +13,0 @@ "conf", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92391