You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@incanta/config

Package Overview
Dependencies
Maintainers
0
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@incanta/config - npm Package Compare versions

Comparing version

to
0.6.5

11

lib/config.js

@@ -92,2 +92,13 @@ "use strict";

applyBases(this.values);
const removeIncantaConfigBase = (obj) => {
for (const key of Object.keys(obj)) {
if (key === "incantaConfigBase") {
delete obj[key];
}
else if (typeof obj[key] === "object" && obj[key] !== null) {
removeIncantaConfigBase(obj[key]);
}
}
};
removeIncantaConfigBase(this.values);
this.values = loader_1.Loader.convertKebabToCamelCase(this.values, configFolderOptions);

@@ -94,0 +105,0 @@ this.normalizedValues = this.normalizeObject(this.values, []);

2

package.json
{
"name": "@incanta/config",
"version": "0.6.4",
"version": "0.6.5",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "exports": {

@@ -146,2 +146,14 @@ import mergeWith from "lodash.mergewith";

const removeIncantaConfigBase = (obj: any): void => {
for (const key of Object.keys(obj)) {
if (key === "incantaConfigBase") {
delete obj[key];
} else if (typeof obj[key] === "object" && obj[key] !== null) {
removeIncantaConfigBase(obj[key]);
}
}
};
removeIncantaConfigBase(this.values);
this.values = Loader.convertKebabToCamelCase(

@@ -148,0 +160,0 @@ this.values,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet