@microsoft/tsdoc
Advanced tools
Comparing version 0.8.0 to 0.8.1
# Change Log - @microsoft/tsdoc | ||
## 0.8.1 | ||
- Improve error reporting for declaration references that are probably missing a `"#"` delimiter | ||
- Rename `DocCodeFence` to `DocFencedCode` | ||
## 0.8.0 | ||
@@ -4,0 +8,0 @@ - Introduce a distinction between "defined" tags (i.e. recognized) versus "supported" tags (i.e. implemented by the tool) |
@@ -7,3 +7,3 @@ /** | ||
BlockTag = "BlockTag", | ||
CodeFence = "CodeFence", | ||
FencedCode = "FencedCode", | ||
CodeSpan = "CodeSpan", | ||
@@ -10,0 +10,0 @@ Comment = "Comment", |
@@ -40,3 +40,3 @@ "use strict"; | ||
switch (docNode.kind) { | ||
case "CodeFence" /* CodeFence */: | ||
case "FencedCode" /* FencedCode */: | ||
case "ErrorText" /* ErrorText */: | ||
@@ -43,0 +43,0 @@ case "Paragraph" /* Paragraph */: |
export * from './DocBlock'; | ||
export * from './DocBlockTag'; | ||
export * from './DocCodeFence'; | ||
export * from './DocFencedCode'; | ||
export * from './DocCodeSpan'; | ||
@@ -5,0 +5,0 @@ export * from './DocComment'; |
@@ -8,3 +8,3 @@ "use strict"; | ||
__export(require("./DocBlockTag")); | ||
__export(require("./DocCodeFence")); | ||
__export(require("./DocFencedCode")); | ||
__export(require("./DocCodeSpan")); | ||
@@ -11,0 +11,0 @@ __export(require("./DocComment")); |
@@ -39,3 +39,3 @@ import { ParserContext } from './ParserContext'; | ||
private _parseHtmlName; | ||
private _parseCodeFence; | ||
private _parseFencedCode; | ||
private _parseCodeSpan; | ||
@@ -42,0 +42,0 @@ private _readSpacingAndNewlines; |
@@ -17,3 +17,3 @@ "use strict"; | ||
switch (node.kind) { | ||
case "CodeFence" /* CodeFence */: | ||
case "FencedCode" /* FencedCode */: | ||
case "CodeSpan" /* CodeSpan */: | ||
@@ -20,0 +20,0 @@ case "EscapedText" /* EscapedText */: |
{ | ||
"name": "@microsoft/tsdoc", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "A parser for the TypeScript doc comment syntax", | ||
@@ -24,9 +24,9 @@ "keywords": [ | ||
"devDependencies": { | ||
"@types/jest": "23.3.1", | ||
"jest": "~23.5.0", | ||
"ts-jest": "~23.1.3", | ||
"@types/jest": "23.3.3", | ||
"jest": "~23.6.0", | ||
"ts-jest": "~23.10.3", | ||
"rimraf": "~2.6.2", | ||
"tslint": "~5.11.0", | ||
"tslint-microsoft-contrib": "~5.2.0", | ||
"typescript": "~3.0.3" | ||
"tslint-microsoft-contrib": "~5.2.1", | ||
"typescript": "~3.1.1" | ||
}, | ||
@@ -33,0 +33,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
510572
8969