@markuplint/astro-parser 2.0.0 → 2.0.1-dev.20220307.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/astro-parser.d.ts +2 -2
- package/lib/index.d.ts +1 -1
- package/package.json +5 -5
package/lib/astro-parser.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare type ASTNode = TemplateNode;
|
|
|
5
5
|
export declare type ASTStyleNode = Style;
|
|
6
6
|
export declare type ASTAttribute = Attribute;
|
|
7
7
|
export declare type AstroAST = {
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
html?: ASTNode;
|
|
9
|
+
style?: ASTStyleNode[];
|
|
10
10
|
};
|
|
11
11
|
export declare function astroParse(code: string): AstroAST | AstroCompileError;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { parse } from './parse';
|
|
2
|
-
export declare const endTag =
|
|
2
|
+
export declare const endTag = "xml";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/astro-parser",
|
|
3
|
-
"version": "2.0.0",
|
|
3
|
+
"version": "2.0.1-dev.20220307.0",
|
|
4
4
|
"description": "astro parser for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@astrojs/parser": "0.20.3",
|
|
20
|
-
"@markuplint/html-parser": "2.0.0",
|
|
21
|
-
"@markuplint/ml-ast": "2.0.0",
|
|
22
|
-
"@markuplint/parser-utils": "2.0.0",
|
|
20
|
+
"@markuplint/html-parser": "2.0.1-dev.20220307.0",
|
|
21
|
+
"@markuplint/ml-ast": "2.0.1-dev.20220307.0",
|
|
22
|
+
"@markuplint/parser-utils": "2.0.1-dev.20220307.0",
|
|
23
23
|
"tslib": "^2.3.1"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "c0a9d36c32ae278bd2fdb9ec9434fd4af46918c3"
|
|
26
26
|
}
|