New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nestjs/config

Package Overview
Dependencies
Maintainers
2
Versions
57
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 2.3.2 to 2.3.3

7

dist/config.module.js

@@ -176,3 +176,8 @@ "use strict";

const keys = Object.keys(config).filter(key => !(key in process.env));
keys.forEach(key => (process.env[key] = config[key]));
keys.forEach(key => {
const value = config[key];
if (typeof value === 'string') {
process.env[key] = value;
}
});
}

@@ -179,0 +184,0 @@ static mergePartial(host, item, provider) {

36

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

@@ -21,3 +21,3 @@ "author": "Kamil Mysliwiec",

"dependencies": {
"dotenv": "16.0.3",
"dotenv": "16.1.4",
"dotenv-expand": "10.0.0",

@@ -28,15 +28,15 @@ "lodash": "4.17.21",

"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-angular": "17.6.3",
"@nestjs/common": "9.4.0",
"@nestjs/core": "9.4.0",
"@nestjs/platform-express": "9.4.0",
"@nestjs/testing": "9.4.0",
"@types/jest": "29.5.1",
"@types/lodash": "4.14.194",
"@types/node": "18.16.10",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"eslint": "8.40.0",
"@commitlint/cli": "17.6.5",
"@commitlint/config-angular": "17.6.5",
"@nestjs/common": "9.4.2",
"@nestjs/core": "9.4.2",
"@nestjs/platform-express": "9.4.2",
"@nestjs/testing": "9.4.2",
"@types/jest": "29.5.2",
"@types/lodash": "4.14.195",
"@types/node": "18.16.16",
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",

@@ -50,7 +50,7 @@ "eslint-plugin-import": "2.27.5",

"reflect-metadata": "0.1.13",
"release-it": "15.10.3",
"rimraf": "5.0.0",
"release-it": "15.11.0",
"rimraf": "5.0.1",
"rxjs": "7.8.1",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
"typescript": "5.1.3"
},

@@ -57,0 +57,0 @@ "peerDependencies": {

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