@markuplint/create-rule 4.7.18 → 4.7.19

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
+ ## [4.7.19](https://github.com/markuplint/markuplint/compare/@markuplint/create-rule@4.7.18...@markuplint/create-rule@4.7.19) (2025-04-13)
7
+
8
+ **Note:** Version bump only for package @markuplint/create-rule
9
+
6
10
  ## [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
11
 
8
12
  **Note:** Version bump only for package @markuplint/create-rule
package/lib/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import path from 'node:path';
2
- import { input, installModule, select, confirm, font, header } from '@markuplint/cli-utils';
2
+ import { input, installModule, select, confirm, font, header, xterm } from '@markuplint/cli-utils';
3
3
  import { createRuleHelper } from './create-rule-helper.js';
4
4
  import { isMarkuplintRepo } from './is-markuplint-repo.js';
5
5
  const icons = {
@@ -71,7 +71,7 @@ export async function createRule() {
71
71
  }
72
72
  }
73
73
  function output(name, icon, title, path) {
74
- const _marker = font.xterm(39)('✔') + ' ';
74
+ const _marker = xterm(39)('✔') + ' ';
75
75
  const _title = (icon, title) => `${icon} ` + font.bold(`${name}/${title}`);
76
76
  const _file = (path) => ' ' + font.cyanBright(path);
77
77
  process.stdout.write(_marker + _title(icon, title) + _file(path));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/create-rule",
3
- "version": "4.7.18",
3
+ "version": "4.7.19",
4
4
  "description": "Rule generator for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -25,16 +25,16 @@
25
25
  "clean": "tsc --build --clean --project tsconfig.build.json"
26
26
  },
27
27
  "dependencies": {
28
- "@markuplint/cli-utils": "4.4.10",
29
- "@markuplint/ml-core": "4.12.3",
28
+ "@markuplint/cli-utils": "4.4.11",
29
+ "@markuplint/ml-core": "4.12.4",
30
30
  "glob": "11.0.1",
31
31
  "prettier": "3.5.3",
32
32
  "ts-node": "10.9.2",
33
- "typescript": "5.8.2"
33
+ "typescript": "5.8.3"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/fs-extra": "11.0.4",
37
37
  "fs-extra": "11.3.0"
38
38
  },
39
- "gitHead": "04924b5471e60820d28c1f48c2f09a537a1e9825"
39
+ "gitHead": "eb36d59f7e13d4e59ff3f3c4eabb5ec06c070eb0"
40
40
  }