jest-runner-docs
Advanced tools
Comparing version 0.2.7 to 0.2.8
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.2.8](https://github.com/tunnckoCore/opensource/compare/jest-runner-docs@0.2.7...jest-runner-docs@0.2.8) (2019-10-20) | ||
### Bug Fixes | ||
* **jest-runner-docs:** tweaks ([86bb1fa](https://github.com/tunnckoCore/opensource/commit/86bb1fa)) | ||
## [0.2.7](https://github.com/tunnckoCore/opensource/compare/jest-runner-docs@0.2.6...jest-runner-docs@0.2.7) (2019-10-20) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "jest-runner-docs", | ||
"version": "0.2.7", | ||
"version": "0.2.8", | ||
"description": "Jest runner for API documentation generation from code comments, supports TypeScript. Very stable and reliable, based on `parse-comments` package", | ||
@@ -67,3 +67,3 @@ "repository": { | ||
}, | ||
"gitHead": "7339b22a6489eed2f18c2663ab155ff7d56bdb12" | ||
"gitHead": "47d8a3601aa039f8fe4376f8ec9d1cc86266ade2" | ||
} |
@@ -102,8 +102,5 @@ /* eslint-disable max-statements */ | ||
let outFile = outfile; | ||
if (outfile.hasError) return outfile.error; | ||
if (outfile.skip) return outfile.skip; | ||
if (!outFile) outFile = docksConfig.outfile; | ||
if (outFile.hasError) return outFile.error; | ||
if (outFile.skip) return outFile.skip; | ||
const postHook = | ||
@@ -120,8 +117,8 @@ typeof docksConfig.postHook === 'function' | ||
docksConfig, | ||
outFile, | ||
outfile: outFile, | ||
outfile, | ||
outFile: outfile, | ||
}), | ||
{ start, testPath }, | ||
); | ||
if (res.hasError) return res.error; | ||
if (res && res.hasError) return res.error; | ||
@@ -132,3 +129,3 @@ return pass({ | ||
test: { | ||
path: outFile, | ||
path: outfile, | ||
title: 'Docks', | ||
@@ -135,0 +132,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
25373
214