@es-joy/jsdoccomment
Advanced tools
Comparing version 0.8.0-alpha.1 to 0.8.0-alpha.2
# CHANGES for `@es-joy/jsdoccomment` | ||
## 0.8.0 | ||
## 0.8.0-alpha.2 | ||
- Fix: Avoid erring with missing `typeLines` | ||
## 0.8.0-alpha.1 | ||
- Breaking change: Export globally as `JsdocComment` | ||
@@ -6,0 +10,0 @@ - Breaking change: Change `JSDoc` prefixes of all node types to `Jsdoc` |
{ | ||
"name": "@es-joy/jsdoccomment", | ||
"version": "0.8.0-alpha.1", | ||
"version": "0.8.0-alpha.2", | ||
"author": "Brett Zamir <brettz9@yahoo.com>", | ||
@@ -5,0 +5,0 @@ "contributors": [], |
@@ -65,3 +65,5 @@ import {parse as jsdocTypePrattParse} from 'jsdoc-type-pratt-parser'; | ||
stripEncapsulatingBrackets(lastTag); | ||
stripEncapsulatingBrackets(lastTag.typeLines, true); | ||
if (lastTag.typeLines.length) { | ||
stripEncapsulatingBrackets(lastTag.typeLines, true); | ||
} | ||
@@ -68,0 +70,0 @@ // With even a multiline type now in full, add parsing |
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
43614
1005