posthtml-parser
Advanced tools
Comparing version 0.8.3 to 0.8.4
@@ -0,3 +1,10 @@ | ||
## <small>0.8.4 (2021-05-06)</small> | ||
* perf: attr value as number ([3d08ec5](https://github.com/posthtml/posthtml-parser/commit/3d08ec5)) | ||
## <small>0.8.3 (2021-05-06)</small> | ||
* 0.8.3 ([80e07ca](https://github.com/posthtml/posthtml-parser/commit/80e07ca)) | ||
* perf: attr value as boolean ([d143dbb](https://github.com/posthtml/posthtml-parser/commit/d143dbb)) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "posthtml-parser", | ||
"version": "0.8.3", | ||
"version": "0.8.4", | ||
"description": "Parse HTML/XML to PostHTMLTree", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -18,3 +18,3 @@ import {ParserOptions} from 'htmlparser2'; | ||
export type Tag = string | boolean; | ||
export type Attributes = Record<string, string | boolean>; | ||
export type Attributes = Record<string, string | number | boolean>; | ||
export type Content = NodeText | Node[]; | ||
@@ -21,0 +21,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
35657