@markuplint/create-rule 4.7.19-dev.110 → 4.7.20

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 +10 -0
  2. package/package.json +10 -13
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.7.20](https://github.com/markuplint/markuplint/compare/@markuplint/create-rule@4.7.19...@markuplint/create-rule@4.7.20) (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
+
12
+ ## [4.7.19](https://github.com/markuplint/markuplint/compare/@markuplint/create-rule@4.7.18...@markuplint/create-rule@4.7.19) (2025-04-13)
13
+
14
+ **Note:** Version bump only for package @markuplint/create-rule
15
+
6
16
  ## [4.7.18](https://github.com/markuplint/markuplint/compare/@markuplint/create-rule@4.7.17...@markuplint/create-rule@4.7.18) (2025-03-09)
7
17
 
8
18
  **Note:** Version bump only for package @markuplint/create-rule
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@markuplint/create-rule",
3
- "version": "4.7.19-dev.110+16e148e6e",
3
+ "version": "4.7.20",
4
4
  "description": "Rule generator for markuplint",
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
  ".": {
@@ -13,28 +12,26 @@
13
12
  "types": "./lib/index.d.ts"
14
13
  }
15
14
  },
16
- "bin": {
17
- "create-rule": "./bin/create-rule.mjs"
18
- },
15
+ "bin": "./bin/create-rule.mjs",
19
16
  "publishConfig": {
20
17
  "access": "public"
21
18
  },
22
19
  "scripts": {
23
20
  "build": "tsc --project tsconfig.build.json",
24
21
  "dev": "tsc --watch --project tsconfig.build.json",
25
- "clean": "tsc --build --clean --project tsconfig.build.json"
22
+ "clean": "tsc --build --clean tsconfig.build.json"
26
23
  },
27
24
  "dependencies": {
28
- "@markuplint/cli-utils": "4.4.11-dev.350+16e148e6e",
29
- "@markuplint/ml-core": "4.12.4-dev.110+16e148e6e",
30
- "glob": "11.0.1",
31
- "prettier": "3.5.3",
25
+ "@markuplint/cli-utils": "4.4.12",
26
+ "@markuplint/ml-core": "4.13.0",
27
+ "glob": "11.0.3",
28
+ "prettier": "3.6.2",
32
29
  "ts-node": "10.9.2",
33
- "typescript": "5.8.3"
30
+ "typescript": "5.9.2"
34
31
  },
35
32
  "devDependencies": {
36
33
  "@types/fs-extra": "11.0.4",
37
- "fs-extra": "11.3.0"
34
+ "fs-extra": "11.3.1"
38
35
  },
39
- "gitHead": "16e148e6ec2abac673c5ea1e42bbb666d421f357"
36
+ "gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
40
37
  }