@markuplint/pug-parser 5.0.0-alpha.2 → 5.0.0-dev.5

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,6 +3,10 @@
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
+ # [5.0.0-alpha.3](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.2...v5.0.0-alpha.3) (2026-02-26)
7
+
8
+ **Note:** Version bump only for package @markuplint/pug-parser
9
+
6
10
  # [5.0.0-alpha.2](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.1...v5.0.0-alpha.2) (2026-02-23)
7
11
 
8
12
  **Note:** Version bump only for package @markuplint/pug-parser
@@ -211,7 +211,8 @@ tokens, pug) {
211
211
  continue;
212
212
  }
213
213
  case 'Mixin': {
214
- // TODO: Attributes when call mixin
214
+ // TODO: Mixin call arguments are dynamic expressions, not static HTML attributes.
215
+ // Parsing them as attributes would require evaluating Pug/JS expressions at build time.
215
216
  // const attrs = getAttrs(node.attrs, tokens, offsets, pug);
216
217
  const attrs = [];
217
218
  const { endLine, endColumn, endOffset } = getLocationFromToken(offset, line, column, tokens, [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/pug-parser",
3
- "version": "5.0.0-alpha.2",
3
+ "version": "5.0.0-dev.5+e96392f56",
4
4
  "description": "Pug parser for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -24,11 +24,11 @@
24
24
  "clean": "tsc --build --clean tsconfig.build.json"
25
25
  },
26
26
  "dependencies": {
27
- "@markuplint/html-parser": "5.0.0-alpha.2",
28
- "@markuplint/ml-ast": "5.0.0-alpha.2",
29
- "@markuplint/parser-utils": "5.0.0-alpha.2",
27
+ "@markuplint/html-parser": "5.0.0-dev.5+e96392f56",
28
+ "@markuplint/ml-ast": "5.0.0-dev.5+e96392f56",
29
+ "@markuplint/parser-utils": "5.0.0-dev.5+e96392f56",
30
30
  "pug-lexer": "5.0.1",
31
31
  "pug-parser": "6.0.0"
32
32
  },
33
- "gitHead": "31ccf1e81443ea3f93597d287595211f1823ddcf"
33
+ "gitHead": "e96392f56e4bc8165ba59622b41c822703a96372"
34
34
  }