@nestjs/mapped-types
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -96,3 +96,6 @@ "use strict"; | ||
if (mergeMap.has(valueKey)) { | ||
mergeMap.get(valueKey).push(...value); | ||
const parentValue = mergeMap.get(valueKey); | ||
if (Array.isArray(parentValue)) { | ||
parentValue.push(...(Array.isArray(value) ? value : [value])); | ||
} | ||
} | ||
@@ -99,0 +102,0 @@ else { |
{ | ||
"name": "@nestjs/mapped-types", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "Nest - modern, fast, powerful node.js web framework (@mapped-types)", | ||
@@ -23,9 +23,9 @@ "author": "Kamil Mysliwiec", | ||
"devDependencies": { | ||
"@commitlint/cli": "18.2.0", | ||
"@commitlint/config-angular": "18.1.0", | ||
"@commitlint/cli": "18.4.1", | ||
"@commitlint/config-angular": "18.4.0", | ||
"@nestjs/common": "10.2.8", | ||
"@types/jest": "29.5.8", | ||
"@types/node": "18.18.9", | ||
"@typescript-eslint/eslint-plugin": "6.10.0", | ||
"@typescript-eslint/parser": "6.10.0", | ||
"@types/node": "20.9.0", | ||
"@typescript-eslint/eslint-plugin": "6.11.0", | ||
"@typescript-eslint/parser": "6.11.0", | ||
"class-transformer": "0.5.1", | ||
@@ -38,6 +38,6 @@ "class-validator": "0.14.0", | ||
"jest": "29.7.0", | ||
"lint-staged": "15.0.2", | ||
"prettier": "3.0.3", | ||
"lint-staged": "15.1.0", | ||
"prettier": "3.1.0", | ||
"reflect-metadata": "0.1.13", | ||
"release-it": "16.2.1", | ||
"release-it": "17.0.0", | ||
"rimraf": "5.0.5", | ||
@@ -44,0 +44,0 @@ "ts-jest": "29.1.1", |
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
23407
368