ts-deepmerge
Advanced tools
Comparing version 7.0.0 to 7.0.1
@@ -19,3 +19,3 @@ type TAllKeys<T> = T extends any ? keyof T : never; | ||
options: IOptions; | ||
withOptions<T_1 extends IObject[]>(options: Partial<IOptions>, ...objects: T_1): TMerged<T_1[number]>; | ||
withOptions<T extends IObject[]>(options: Partial<IOptions>, ...objects: T): TMerged<T[number]>; | ||
}; | ||
@@ -22,0 +22,0 @@ interface IOptions { |
@@ -19,3 +19,3 @@ type TAllKeys<T> = T extends any ? keyof T : never; | ||
options: IOptions; | ||
withOptions<T_1 extends IObject[]>(options: Partial<IOptions>, ...objects: T_1): TMerged<T_1[number]>; | ||
withOptions<T extends IObject[]>(options: Partial<IOptions>, ...objects: T): TMerged<T[number]>; | ||
}; | ||
@@ -22,0 +22,0 @@ interface IOptions { |
@@ -5,3 +5,3 @@ { | ||
"license": "ISC", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"scripts": { | ||
@@ -15,3 +15,3 @@ "clean": "rimraf ./{cjs,esm}/!(package.json)", | ||
"format": "prettier --write \"**/*.{json,ts,tsx}\"", | ||
"lint": "eslint \"**/*.ts?(x)\"", | ||
"lint": "eslint \"./src/**/*.ts?(x)\"", | ||
"lint:fix": "yarn format && yarn lint --fix", | ||
@@ -60,17 +60,17 @@ "typecheck": "tsc --noEmit", | ||
"devDependencies": { | ||
"@types/jest": "^29.5.11", | ||
"@typescript-eslint/eslint-plugin": "^6.19.1", | ||
"@types/jest": "^29.5.12", | ||
"concurrently": "^8.2.2", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.56.0", | ||
"eslint-config-voodoocreation": "^5.0.0", | ||
"eslint": "^9.7.0", | ||
"eslint-config-voodoocreation": "^6.0.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-jest": "^27.6.3", | ||
"eslint-plugin-jest": "^28.6.0", | ||
"eslint-plugin-prefer-arrow": "^1.2.3", | ||
"jest": "^29.7.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"prettier": "^3.2.4", | ||
"ts-jest": "^29.1.2", | ||
"typescript": "^5.3.3" | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"ts-jest": "^29.2.2", | ||
"typescript": "^5.5.3" | ||
} | ||
} |
@@ -92,3 +92,3 @@ [![npm](https://img.shields.io/npm/v/ts-deepmerge)](https://www.npmjs.com/package/ts-deepmerge) | ||
All options have JSDoc descriptions [in its source](/index.ts#L82). | ||
All options have JSDoc descriptions [in its source](/src/index.ts#L82). | ||
@@ -95,0 +95,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
12263