You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/config/index.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -110,8 +110,8 @@ for (let i = keys.length; i--;) {
110
110
// and the config with uppercase is not set
111
111
// we set the new config using the old key.
112
112
if(uppercase.test(keys[i])&&
113
-
config[lowercaseKey]&&
114
-
!config[keys[1]]){
113
+
config[lowercaseKey]!==undefined&&
114
+
fileConfig[keys[i]]===undefined){
115
115
logger.warn('config.js contains deprecated lowercase setting for '+keys[i]+'. Please change your config.js file to replace '+lowercaseKey+' with '+keys[i])
0 commit comments