Comparing version 0.1.2 to 0.1.3
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.1.3](https://github.com/BlackGlory/justypes/compare/v0.1.2...v0.1.3) (2021-07-03) | ||
### Features | ||
* add a batch of types from hotypes v3 ([dc08e4b](https://github.com/BlackGlory/justypes/commit/dc08e4baa7e1a159875bb5d51101a6459a998fc7)) | ||
### [0.1.2](https://github.com/BlackGlory/justypes/compare/v0.1.1...v0.1.2) (2021-05-22) | ||
@@ -7,0 +14,0 @@ |
@@ -0,3 +1,14 @@ | ||
export * from './constructor'; | ||
export * from './dictionary'; | ||
export * from './falsy'; | ||
export * from './getter'; | ||
export * from './json'; | ||
export * from './non-empty-array'; | ||
export * from './nullable'; | ||
export * from './nullish'; | ||
export * from './unpacked-array-like'; | ||
export * from './unpacked-array'; | ||
export * from './unpacked-async-iterable'; | ||
export * from './unpacked-iterable'; | ||
export * from './unpacked-promise-like'; | ||
export * from './unpacked-promise'; |
@@ -13,5 +13,16 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./constructor"), exports); | ||
__exportStar(require("./dictionary"), exports); | ||
__exportStar(require("./falsy"), exports); | ||
__exportStar(require("./getter"), exports); | ||
__exportStar(require("./json"), exports); | ||
__exportStar(require("./non-empty-array"), exports); | ||
__exportStar(require("./nullable"), exports); | ||
__exportStar(require("./nullish"), exports); | ||
__exportStar(require("./unpacked-array-like"), exports); | ||
__exportStar(require("./unpacked-array"), exports); | ||
__exportStar(require("./unpacked-async-iterable"), exports); | ||
__exportStar(require("./unpacked-iterable"), exports); | ||
__exportStar(require("./unpacked-promise-like"), exports); | ||
__exportStar(require("./unpacked-promise"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "justypes", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Dumb types for TypeScript in the real world", | ||
@@ -40,7 +40,7 @@ "keywords": [ | ||
"@types/jest": "^26.0.23", | ||
"@typescript-eslint/eslint-plugin": "^4.24.0", | ||
"@typescript-eslint/parser": "^4.24.0", | ||
"eslint": "^7.27.0", | ||
"@typescript-eslint/eslint-plugin": "^4.28.1", | ||
"@typescript-eslint/parser": "^4.28.1", | ||
"eslint": "^7.30.0", | ||
"husky": "^4.3.8", | ||
"jest": "^26.6.3", | ||
"jest": "^27.0.6", | ||
"jest-extended": "^0.11.5", | ||
@@ -50,8 +50,8 @@ "npm-run-all": "^4.1.5", | ||
"standard-version": "^9.3.0", | ||
"ts-jest": "^26.5.6", | ||
"ts-jest": "^27.0.3", | ||
"tscpaths": "^0.0.9", | ||
"tsd": "^0.15.1", | ||
"tslib": "^2.2.0", | ||
"typescript": "^4.2.4" | ||
"tsd": "^0.17.0", | ||
"tslib": "^2.3.0", | ||
"typescript": "^4.3.5" | ||
} | ||
} |
# justypes | ||
Dumb types for TypeScript in the real world. | ||
## The difference with [hotypes] | ||
justypes are more like adjectives or nouns. | ||
[hotypes]: https://www.npmjs.com/package/hotypes | ||
## Install | ||
@@ -14,4 +20,14 @@ | ||
- Constructor | ||
- Dictionary | ||
- Falsy | ||
- Getter | ||
- Json | ||
- NonEmptyArray | ||
- Nullish | ||
- Falsy | ||
- UnpackedArrayLike | ||
- UnpackedArray | ||
- UnpackedAsyncIterable | ||
- UnpackedIterable | ||
- UnpackedPromiseLike | ||
- UnpackedPromise |
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
10646
49
86
33