kmore-types
Advanced tools
Comparing version 0.11.0 to 0.11.1
@@ -6,50 +6,16 @@ # Change Log | ||
# 0.11.0 (2019-09-10) | ||
## [0.11.1](https://github.com/waitingsong/kmore-types/compare/v0.11.0...v0.11.1) (2019-10-08) | ||
**Note:** Version bump only for package kmore-types | ||
### Bug Fixes | ||
* **kmore-types:** break within matchSourceFileWithFilePath() ([6f2f5df](https://github.com/waitingsong/kmore-types/commit/6f2f5df)) | ||
* catch test error ([54028ac](https://github.com/waitingsong/kmore-types/commit/54028ac)) | ||
* createDir() path resolve under linux ([3647a03](https://github.com/waitingsong/kmore-types/commit/3647a03)) | ||
* deps, peerDeps might empty ([dfdfc74](https://github.com/waitingsong/kmore-types/commit/dfdfc74)) | ||
* error TS1345: An expression of type 'void' cannot be tested for truthiness ([c750284](https://github.com/waitingsong/kmore-types/commit/c750284)) | ||
* options not covered within createFile() ([bdcc149](https://github.com/waitingsong/kmore-types/commit/bdcc149)) | ||
* path require parse by normalize() within createDir() ([bfd7f69](https://github.com/waitingsong/kmore-types/commit/bfd7f69)) | ||
* revert ts-node to '5.0.1' ([c4711b6](https://github.com/waitingsong/kmore-types/commit/c4711b6)) | ||
* rimraf() got "no such file or directory" if unlink a file ([c15124e](https://github.com/waitingsong/kmore-types/commit/c15124e)) | ||
* rimraf() rm folder ([5b57d2a](https://github.com/waitingsong/kmore-types/commit/5b57d2a)) | ||
* **tslint:** no-unused-variable rule ([341ac00](https://github.com/waitingsong/kmore-types/commit/341ac00)) | ||
* wrong variable within createFile() ([c8f5338](https://github.com/waitingsong/kmore-types/commit/c8f5338)) | ||
### Features | ||
* add opts BuildSrcOpts['excludePathKeys'] for buildSource() ([67f8fe5](https://github.com/waitingsong/kmore-types/commit/67f8fe5)) | ||
* build types ([d05f3b3](https://github.com/waitingsong/kmore-types/commit/d05f3b3)) | ||
* **build:** do not build esm.js default ([195733b](https://github.com/waitingsong/kmore-types/commit/195733b)) | ||
* add assertNever() ([5485bf0](https://github.com/waitingsong/kmore-types/commit/5485bf0)) | ||
* add assertNeverObb() ([6671233](https://github.com/waitingsong/kmore-types/commit/6671233)) | ||
* add isPathAcessible() ([1d1d216](https://github.com/waitingsong/kmore-types/commit/1d1d216)) | ||
* add lib/shared.ts ([f51e5d8](https://github.com/waitingsong/kmore-types/commit/f51e5d8)) | ||
* add logger() ([6d14f3d](https://github.com/waitingsong/kmore-types/commit/6d14f3d)) | ||
* add Observable functions ([6173d1d](https://github.com/waitingsong/kmore-types/commit/6173d1d)) | ||
* change logger() to accept more args ([7940e87](https://github.com/waitingsong/kmore-types/commit/7940e87)) | ||
* compile output bundle file without minify ([57b7537](https://github.com/waitingsong/kmore-types/commit/57b7537)) | ||
* do isPathAccessible() first within isDirFileExists() ([cd26ca1](https://github.com/waitingsong/kmore-types/commit/cd26ca1)) | ||
* export basename() from shared ([61b91b2](https://github.com/waitingsong/kmore-types/commit/61b91b2)) | ||
* export dirname() ([576f295](https://github.com/waitingsong/kmore-types/commit/576f295)) | ||
* export native assert() ([b6c99c0](https://github.com/waitingsong/kmore-types/commit/b6c99c0)) | ||
* export os.tmpdir() ([d185e04](https://github.com/waitingsong/kmore-types/commit/d185e04)) | ||
* export rmdirAsync() and rimraf() ([caf3e8d](https://github.com/waitingsong/kmore-types/commit/caf3e8d)) | ||
* export statAsync ([eb2f8dd](https://github.com/waitingsong/kmore-types/commit/eb2f8dd)) | ||
* output esm.min.js ([0848cce](https://github.com/waitingsong/kmore-types/commit/0848cce)) | ||
* parse peerDependencies as external ([36f62b0](https://github.com/waitingsong/kmore-types/commit/36f62b0)) | ||
* parseUMDName() ([8c4ecd1](https://github.com/waitingsong/kmore-types/commit/8c4ecd1)) | ||
* remove log() and logger() ([623bf3b](https://github.com/waitingsong/kmore-types/commit/623bf3b)) | ||
# 0.11.0 (2019-09-10) | ||
### Reverts | ||
### Bug Fixes | ||
* wrong tslib remove ([96239de](https://github.com/waitingsong/kmore-types/commit/96239de)) | ||
* **kmore-types:** break within matchSourceFileWithFilePath() ([6f2f5df](https://github.com/waitingsong/kmore-types/commit/6f2f5df)) | ||
@@ -60,2 +26,4 @@ | ||
# Changelog | ||
@@ -62,0 +30,0 @@ |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* @version 0.7.0 | ||
* @version 0.11.0 | ||
* @author waiting | ||
@@ -8,0 +8,0 @@ * @license MIT |
{ | ||
"name": "kmore-types", | ||
"author": "waiting", | ||
"version": "0.11.0", | ||
"version": "0.11.1", | ||
"description": "Retrieve types info from ts file", | ||
@@ -45,3 +45,3 @@ "keywords": [ | ||
"scripts": { | ||
"build": "npm run lint && npm run tsc && npm run rp", | ||
"build": "npm run tsc && npm run rp", | ||
"devbuild": "npm run tsc && npm run rp", | ||
@@ -51,2 +51,3 @@ "clean": "rm -rf dist/* .vscode/.tsbuildinfo .vscode/.tsbuildinfo.* ", | ||
"lint": "eslint --fix {src,test}/**/*.ts", | ||
"lint:nofix": "eslint {src,test}/**/*.ts", | ||
"rp": "rollup -c rollup.config.js", | ||
@@ -85,3 +86,3 @@ "rp:w": "npm run tsc:w | rollup -wc rollup.config.js", | ||
}, | ||
"gitHead": "7696bcbbbbbe5f77ef68fb97871dbc2d3cfcee4f" | ||
"gitHead": "10e78bd0e1417b6cfa6c4387b9bc269f9e36fe44" | ||
} |
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
172250