@markuplint/alpine-parser 4.6.4 → 4.6.6

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/CHANGELOG.md CHANGED
@@ -3,16 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [4.6.4](https://github.com/markuplint/markuplint/compare/@markuplint/alpine-parser@4.6.3...@markuplint/alpine-parser@4.6.4) (2024-06-09)
6
+ ## [4.6.6](https://github.com/markuplint/markuplint/compare/@markuplint/alpine-parser@4.6.5...@markuplint/alpine-parser@4.6.6) (2024-09-02)
7
7
 
8
+ **Note:** Version bump only for package @markuplint/alpine-parser
8
9
 
9
- ### Bug Fixes
10
10
 
11
- * fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
12
11
 
13
12
 
14
13
 
14
+ ## [4.6.5](https://github.com/markuplint/markuplint/compare/@markuplint/alpine-parser@4.6.4...@markuplint/alpine-parser@4.6.5) (2024-06-25)
15
+
16
+ **Note:** Version bump only for package @markuplint/alpine-parser
17
+
18
+ ## [4.6.4](https://github.com/markuplint/markuplint/compare/@markuplint/alpine-parser@4.6.3...@markuplint/alpine-parser@4.6.4) (2024-06-09)
19
+
20
+ ### Bug Fixes
15
21
 
22
+ - fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
16
23
 
17
24
  ## [4.6.3](https://github.com/markuplint/markuplint/compare/@markuplint/alpine-parser@4.6.2...@markuplint/alpine-parser@4.6.3) (2024-05-28)
18
25
 
package/lib/parser.d.ts CHANGED
@@ -2,9 +2,9 @@ import type { Token } from '@markuplint/parser-utils';
2
2
  import { HtmlParser } from '@markuplint/html-parser';
3
3
  declare class AlpineParser extends HtmlParser {
4
4
  visitAttr(token: Token, options: Parameters<HtmlParser['visitAttr']>[1]): (import("packages/@markuplint/ml-ast/lib/types.js").MLASTHTMLAttr & {
5
- __rightText?: string | undefined;
5
+ __rightText?: string;
6
6
  }) | (import("packages/@markuplint/ml-ast/lib/types.js").MLASTSpreadAttr & {
7
- __rightText?: string | undefined;
7
+ __rightText?: string;
8
8
  });
9
9
  }
10
10
  export declare const parser: AlpineParser;
package/lib/spec.js CHANGED
@@ -72,5 +72,4 @@ const spec = {
72
72
  },
73
73
  ],
74
74
  };
75
- // eslint-disable-next-line import/no-default-export
76
75
  export default spec;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/alpine-parser",
3
- "version": "4.6.4",
3
+ "version": "4.6.6",
4
4
  "description": "Alpine.js parser for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -25,11 +25,11 @@
25
25
  "clean": "tsc --build --clean"
26
26
  },
27
27
  "dependencies": {
28
- "@markuplint/html-parser": "4.6.4"
28
+ "@markuplint/html-parser": "4.6.6"
29
29
  },
30
30
  "devDependencies": {
31
- "@markuplint/ml-spec": "4.6.2",
32
- "@markuplint/parser-utils": "4.6.4"
31
+ "@markuplint/ml-spec": "4.6.4",
32
+ "@markuplint/parser-utils": "4.6.6"
33
33
  },
34
- "gitHead": "0200dc1f7b1ffa7455b889696153e25dbae8241f"
34
+ "gitHead": "77cd5a25d5cf28c83253b7bfe02cd25b54e236b0"
35
35
  }