@markuplint/svelte-parser 5.0.0-alpha.0 → 5.0.0-alpha.1

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/parser.d.ts CHANGED
@@ -67,7 +67,7 @@ export declare class SvelteParser extends Parser<SvelteNode> {
67
67
  * curly-brace expression values and shorthand attributes (`{name}`).
68
68
  * Directive resolution (`bind:`, `class:`, `on:`, etc.) and IDL attribute
69
69
  * mapping are now handled declaratively by svelte-spec's directivePatterns
70
- * and ml-core's useIDLAttributeNames.
70
+ * and ml-core's acceptedAttrNames.
71
71
  *
72
72
  * @param token - The token representing the attribute
73
73
  * @returns The parsed attribute node with Svelte-specific metadata
package/lib/parser.js CHANGED
@@ -282,7 +282,7 @@ export class SvelteParser extends Parser {
282
282
  * curly-brace expression values and shorthand attributes (`{name}`).
283
283
  * Directive resolution (`bind:`, `class:`, `on:`, etc.) and IDL attribute
284
284
  * mapping are now handled declaratively by svelte-spec's directivePatterns
285
- * and ml-core's useIDLAttributeNames.
285
+ * and ml-core's acceptedAttrNames.
286
286
  *
287
287
  * @param token - The token representing the attribute
288
288
  * @returns The parsed attribute node with Svelte-specific metadata
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/svelte-parser",
3
- "version": "5.0.0-alpha.0",
3
+ "version": "5.0.0-alpha.1",
4
4
  "description": "Svelte parser for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -32,10 +32,10 @@
32
32
  "clean": "tsc --build --clean tsconfig.build.json"
33
33
  },
34
34
  "dependencies": {
35
- "@markuplint/html-parser": "5.0.0-alpha.0",
36
- "@markuplint/ml-ast": "5.0.0-alpha.0",
37
- "@markuplint/parser-utils": "5.0.0-alpha.0",
38
- "svelte": "5.53.0"
35
+ "@markuplint/html-parser": "5.0.0-alpha.1",
36
+ "@markuplint/ml-ast": "5.0.0-alpha.1",
37
+ "@markuplint/parser-utils": "5.0.0-alpha.1",
38
+ "svelte": "5.53.2"
39
39
  },
40
- "gitHead": "13dcfc84ec83d87360c720e253383b60767e1b56"
40
+ "gitHead": "78a295e73a097a1ce09c777c06fa21ab68136387"
41
41
  }