@markuplint/ml-ast
Advanced tools
Comparing version 4.3.1 to 4.4.0
@@ -6,2 +6,8 @@ # Change Log | ||
# [4.4.0](https://github.com/markuplint/markuplint/compare/@markuplint/ml-ast@4.3.1...@markuplint/ml-ast@4.4.0) (2024-05-28) | ||
### Features | ||
- **ml-ast:** add `isFragment` to Element and PSBlock ([2d4dada](https://github.com/markuplint/markuplint/commit/2d4dada477be20a799e05fdebb6ad570234d4a00)) | ||
## [4.3.1](https://github.com/markuplint/markuplint/compare/@markuplint/ml-ast@4.3.1-alpha.0...@markuplint/ml-ast@4.3.1) (2024-05-04) | ||
@@ -8,0 +14,0 @@ |
@@ -43,2 +43,3 @@ export type MLASTNodeType = 'doctype' | 'starttag' | 'endtag' | 'comment' | 'text' | 'omittedtag' | 'psblock' | 'invalid' | 'attr' | 'spread'; | ||
readonly elementType: ElementType; | ||
readonly isFragment: boolean; | ||
readonly attributes: readonly MLASTAttr[]; | ||
@@ -66,2 +67,3 @@ readonly hasSpreadAttr?: boolean; | ||
readonly nodeName: string; | ||
readonly isFragment: boolean; | ||
readonly childNodes: readonly MLASTChildNode[]; | ||
@@ -68,0 +70,0 @@ readonly isBogus: boolean; |
{ | ||
"name": "@markuplint/ml-ast", | ||
"version": "4.3.1", | ||
"version": "4.4.0", | ||
"description": "The markuplint AST types.", | ||
@@ -26,3 +26,3 @@ "repository": "git@github.com:markuplint/markuplint.git", | ||
}, | ||
"gitHead": "7a5967fce14fdf66f0d8eae9d93ae5b350648d3d" | ||
"gitHead": "bf70c41b1d2497e85b73c9ecd5551eb522e6bdfc" | ||
} |
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
10046
199