ts-deepmerge
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -6,3 +6,3 @@ { | ||
"license": "ISC", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"keywords": [ | ||
@@ -40,16 +40,16 @@ "typescript", | ||
"devDependencies": { | ||
"@types/jest": "^25.1.4", | ||
"@typescript-eslint/eslint-plugin": "^2.26.0", | ||
"@types/jest": "^26.0.14", | ||
"@typescript-eslint/eslint-plugin": "^4.4.1", | ||
"cross-env": "^7.0.2", | ||
"eslint": "^6.8.0", | ||
"eslint": "^7.11.0", | ||
"eslint-config-voodoocreation": "^1.1.1", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-jest": "^23.8.2", | ||
"eslint-plugin-jest": "^24.1.0", | ||
"eslint-plugin-prefer-arrow": "^1.1.7", | ||
"jest": "^25.2.4", | ||
"jest": "^26.5.3", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.0.2", | ||
"ts-jest": "^25.3.0", | ||
"typescript": "^3.8.3" | ||
"ts-jest": "^26.4.1", | ||
"typescript": "^4.0.3" | ||
} | ||
} |
@@ -7,3 +7,7 @@ TypeScript Deep Merge | ||
Objects and arrays will be merged, but values such as numbers and strings will be overwritten. | ||
All merging/overwriting occurs in the order of the arguments you provide the function with. | ||
Usage | ||
@@ -32,2 +36,3 @@ ----- | ||
b: { | ||
b: 3, | ||
c: 3 | ||
@@ -50,3 +55,3 @@ }, | ||
"a": 2, | ||
"b": 2, | ||
"b": 3, | ||
"c": 3 | ||
@@ -53,0 +58,0 @@ }, |
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
5196
59