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

@nestjs/config

Package Overview
Dependencies
Maintainers
3
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nestjs/config - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

5

dist/config.module.js

@@ -37,3 +37,3 @@ "use strict";

if (!options.ignoreEnvVars) {
config = Object.assign(Object.assign({}, process.env), config);
config = Object.assign(Object.assign({}, config), process.env);
}

@@ -133,4 +133,3 @@ if (options.validationSchema) {

}
const keys = Object.keys(config).filter(key => !(key in process.env) ||
(key in process.env && process.env[key] !== config[key]));
const keys = Object.keys(config).filter(key => !(key in process.env));
keys.forEach(key => (process.env[key] = config[key]));

@@ -137,0 +136,0 @@ }

10

package.json
{
"name": "@nestjs/config",
"version": "0.4.1",
"version": "0.4.2",
"description": "Nest - modern, fast, powerful node.js web framework (@config)",

@@ -40,5 +40,5 @@ "author": "Kamil Mysliwiec",

"@types/uuid": "7.0.3",
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.31.0",
"eslint": "6.8.0",
"@typescript-eslint/eslint-plugin": "2.32.0",
"@typescript-eslint/parser": "2.32.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",

@@ -54,3 +54,3 @@ "eslint-plugin-import": "2.20.2",

"rxjs": "6.5.5",
"ts-jest": "25.5.0",
"ts-jest": "25.5.1",
"typescript": "3.8.3"

@@ -57,0 +57,0 @@ },

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