@markuplint/ml-ast 4.4.9 → 4.4.10

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.4.10](https://github.com/markuplint/markuplint/compare/@markuplint/ml-ast@4.4.9...@markuplint/ml-ast@4.4.10) (2025-08-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ensure that each `clean` command correctly removes build files ([110b78e](https://github.com/markuplint/markuplint/commit/110b78e85379d29a84ca68325127344a87a570b6))
11
+
6
12
  ## [4.4.9](https://github.com/markuplint/markuplint/compare/@markuplint/ml-ast@4.4.8...@markuplint/ml-ast@4.4.9) (2024-11-17)
7
13
 
8
14
  **Note:** Version bump only for package @markuplint/ml-ast
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@markuplint/ml-ast",
3
- "version": "4.4.9",
3
+ "version": "4.4.10",
4
4
  "description": "The markuplint AST types.",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
7
7
  "license": "MIT",
8
- "private": false,
9
8
  "type": "module",
10
9
  "exports": {
11
10
  ".": {
@@ -22,7 +21,7 @@
22
21
  "scripts": {
23
22
  "build": "tsc --project tsconfig.build.json",
24
23
  "dev": "tsc --watch --project tsconfig.build.json",
25
- "clean": "tsc --build --clean"
24
+ "clean": "tsc --build --clean tsconfig.build.json"
26
25
  },
27
- "gitHead": "b2154ecf1e67559a3791991752f45c9c0283801a"
26
+ "gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
28
27
  }