helpertypes
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -0,13 +1,31 @@ | ||
## [0.0.4](https://github.com/wessberg/helpertypes/compare/v0.0.3...v0.0.4) (2021-08-22) | ||
### Features | ||
* add additional helper type: RequiredExcept ([6b6998f](https://github.com/wessberg/helpertypes/commit/6b6998ff68cc1e6d83abb2f207478adee319042a)) | ||
## [0.0.3](https://github.com/wessberg/helpertypes/compare/v0.0.2...v0.0.3) (2021-06-06) | ||
### Features | ||
- add helpers: UppercaseKeys, LowercaseKeys, CapitalizeKeys, UncapitalizeKeys ([6ce3bfd](https://github.com/wessberg/helpertypes/commit/6ce3bfdc99ab438d7d1000b18f7a9a717668b821)) | ||
* add helpers: UppercaseKeys, LowercaseKeys, CapitalizeKeys, UncapitalizeKeys ([6ce3bfd](https://github.com/wessberg/helpertypes/commit/6ce3bfdc99ab438d7d1000b18f7a9a717668b821)) | ||
## [0.0.2](https://github.com/wessberg/helpertypes/compare/v0.0.1...v0.0.2) (2021-05-27) | ||
### Features | ||
- add helper: Mutable ([ff00233](https://github.com/wessberg/helpertypes/commit/ff0023305c121694044d58dcf50db7be228dea6d)) | ||
* add helper: Mutable ([ff00233](https://github.com/wessberg/helpertypes/commit/ff0023305c121694044d58dcf50db7be228dea6d)) | ||
## 0.0.1 (2021-05-26) | ||
@@ -54,2 +54,6 @@ /** | ||
/** | ||
* Require all keys in T, except for the keys given in K | ||
*/ | ||
export declare type RequiredExcept<T, K extends keyof T> = Omit<Required<T>, K> & Pick<T, K>; | ||
/** | ||
* An arbitrary Function that takes any amount of arguments and returns anything | ||
@@ -56,0 +60,0 @@ */ |
{ | ||
"name": "helpertypes", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A collection of TypeScript helper types", | ||
@@ -45,19 +45,19 @@ "scripts": { | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^4.26.0", | ||
"@typescript-eslint/parser": "^4.26.0", | ||
"@typescript-eslint/eslint-plugin": "^4.29.2", | ||
"@typescript-eslint/parser": "^4.29.2", | ||
"@wessberg/ts-config": "^1.1.2", | ||
"sandhog": "^1.0.41", | ||
"eslint": "^7.28.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-jsdoc": "^35.1.3", | ||
"husky": "^6.0.0", | ||
"eslint-plugin-import": "^2.24.1", | ||
"eslint-plugin-jsdoc": "^36.0.7", | ||
"husky": "^7.0.1", | ||
"np": "7.5.0", | ||
"pnpm": "^6.7.1", | ||
"prettier": "^2.3.1", | ||
"pretty-quick": "^3.1.0", | ||
"pnpm": "^6.14.2", | ||
"prettier": "^2.3.2", | ||
"pretty-quick": "^3.1.1", | ||
"rimraf": "^3.0.2", | ||
"standard-changelog": "^2.0.27", | ||
"typescript": "^4.3.2", | ||
"npm-check-updates": "^11.6.0" | ||
"typescript": "^4.3.5", | ||
"npm-check-updates": "^11.8.3" | ||
}, | ||
@@ -64,0 +64,0 @@ "main": "./dist/index.d.ts", |
Sorry, the diff of this file is not supported yet
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
20232
196