didyoumean2
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -5,2 +5,13 @@ # Change Log | ||
<a name="2.0.2"></a> | ||
## [2.0.2](https://github.com/foray1010/didyoumean2/compare/v2.0.1...v2.0.2) (2019-02-06) | ||
### Bug Fixes | ||
* do not include test files in built package ([e35bbac](https://github.com/foray1010/didyoumean2/commit/e35bbac)) | ||
* only allow object and string for function `matchItemProcessor` ([ce656ee](https://github.com/foray1010/didyoumean2/commit/ce656ee)) | ||
<a name="2.0.1"></a> | ||
@@ -7,0 +18,0 @@ ## [2.0.1](https://github.com/foray1010/didyoumean2/compare/v2.0.0...v2.0.1) (2019-02-02) |
@@ -8,4 +8,4 @@ import { Options } from '../types'; | ||
*/ | ||
declare const matchItemProcessor: (matchItem: any, options: Options) => string; | ||
declare const matchItemProcessor: (matchItem: string | object, options: Options) => string; | ||
export default matchItemProcessor; | ||
//# sourceMappingURL=matchItemProcessor.d.ts.map |
{ | ||
"name": "didyoumean2", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"license": "MIT", | ||
@@ -12,8 +12,8 @@ "main": "dist/index.js", | ||
"ci": "yarn lint && yarn typecheck && yarn test", | ||
"dev": "tsc --watch", | ||
"dev": "shx rm -rf dist/ && tsc --watch", | ||
"ignore-sync": "ignore-sync", | ||
"lint": "eslint '**/*.ts'", | ||
"prepublishOnly": "tsc", | ||
"test": "cross-env NODE_ENV=test jest --config .jestrc.json", | ||
"typecheck": "tsc --noEmit" | ||
"prepublishOnly": "shx rm -rf dist/ && tsc", | ||
"test": "jest --config .jestrc.json", | ||
"typecheck": "tsc --noEmit --project ./tsconfig.typecheck.json" | ||
}, | ||
@@ -31,7 +31,6 @@ "dependencies": { | ||
"@commitlint/config-conventional": "7.5.0", | ||
"@types/jest": "23.3.13", | ||
"@types/jest": "24.0.0", | ||
"@types/leven": "2.1.1", | ||
"@types/lodash.deburr": "4.1.4", | ||
"@types/ramda": "0.25.47", | ||
"cross-env": "5.2.0", | ||
"eslint": "5.13.0", | ||
@@ -41,6 +40,7 @@ "eslint-config-foray1010": "6.19.0", | ||
"ignore-sync": "2.0.0", | ||
"jest": "24.0.0", | ||
"lint-staged": "8.1.1", | ||
"jest": "24.1.0", | ||
"lint-staged": "8.1.3", | ||
"markdownlint-cli": "0.13.0", | ||
"prettier-eslint-cli": "4.7.1", | ||
"shx": "0.3.2", | ||
"typescript": "3.3.1" | ||
@@ -47,0 +47,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
39418
44
414