@incanta/config
Advanced tools
Comparing version 0.5.12 to 0.5.13
@@ -44,2 +44,5 @@ "use strict"; | ||
for (const key of Object.keys(obj)) { | ||
if (key === "variableCasing") { | ||
continue; | ||
} | ||
const newKey = key.replace(/-([a-zA-Z0-9])/g, function (_, match) { | ||
@@ -46,0 +49,0 @@ return match.toUpperCase(); |
{ | ||
"name": "@incanta/config", | ||
"version": "0.5.12", | ||
"version": "0.5.13", | ||
"main": "lib/index.js", | ||
@@ -21,3 +21,3 @@ "exports": { | ||
"dependencies": { | ||
"axios": "^1.7.2", | ||
"axios": "^1.7.4", | ||
"js-yaml": "^4.1.0", | ||
@@ -24,0 +24,0 @@ "json5": "^2.2.3", |
@@ -62,2 +62,6 @@ import fs from "fs"; | ||
for (const key of Object.keys(obj)) { | ||
if (key === "variableCasing") { | ||
continue; | ||
} | ||
const newKey = key.replace(/-([a-zA-Z0-9])/g, function (_, match) { | ||
@@ -64,0 +68,0 @@ return match.toUpperCase(); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
82511
1490
Updatedaxios@^1.7.4