Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@incanta/config

Package Overview
Dependencies
Maintainers
0
Versions
50
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 0.5.11 to 0.5.12

3

lib/loader.js

@@ -123,2 +123,5 @@ "use strict";

if (options.parentNames) {
if (typeof options.parentNames === "string") {
throw new Error("parentNames should be an array of strings, not a single string");
}
for (const parentName of options.parentNames) {

@@ -125,0 +128,0 @@ if (parentName === "default") {

2

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

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

@@ -161,2 +161,8 @@ import fs from "fs";

if (options.parentNames) {
if (typeof options.parentNames === "string") {
throw new Error(
"parentNames should be an array of strings, not a single string"
);
}
for (const parentName of options.parentNames) {

@@ -163,0 +169,0 @@ if (parentName === "default") {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc