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

@men-mvc/config

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@men-mvc/config - npm Package Compare versions

Comparing version 0.55.0 to 0.56.0

8

lib/appProjectConfig.js

@@ -109,2 +109,10 @@ "use strict";

}
case types_1.EnvVarDataType.BOOLEAN: {
let booleanValue = envVarValue.toLowerCase() === 'false' ||
envVarValue.toLowerCase() === '0'
? false
: !!envVarValue;
lodash_1.default.set(appProjectConfig, key, booleanValue);
break;
}
default: {

@@ -111,0 +119,0 @@ // string

3

lib/types/envVarDataType.d.ts

@@ -5,3 +5,4 @@ export declare enum EnvVarDataType {

STRING_ARRAY = "string_array",
NUMBER_ARRAY = "number_array"
NUMBER_ARRAY = "number_array",
BOOLEAN = "boolean"
}

@@ -10,2 +10,3 @@ "use strict";

EnvVarDataType["NUMBER_ARRAY"] = "number_array";
EnvVarDataType["BOOLEAN"] = "boolean";
})(EnvVarDataType = exports.EnvVarDataType || (exports.EnvVarDataType = {}));
{
"name": "@men-mvc/config",
"version": "0.55.0",
"version": "0.56.0",
"description": "Config package for Men MVC framework.",

@@ -49,3 +49,3 @@ "private": false,

"license": "MIT",
"gitHead": "2541fc2ba8aef89123358467a46186f2daa63640"
"gitHead": "ac4b4350e014886cc304aaf30a2b0bf8c4fae954"
}
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