@markuplint/create-rule 4.7.18 → 4.7.19-dev.110
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/cli.js +2 -2
- package/package.json +5 -5
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 =
|
|
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.
|
|
3
|
+
"version": "4.7.19-dev.110+16e148e6e",
|
|
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.
|
|
29
|
-
"@markuplint/ml-core": "4.12.
|
|
28
|
+
"@markuplint/cli-utils": "4.4.11-dev.350+16e148e6e",
|
|
29
|
+
"@markuplint/ml-core": "4.12.4-dev.110+16e148e6e",
|
|
30
30
|
"glob": "11.0.1",
|
|
31
31
|
"prettier": "3.5.3",
|
|
32
32
|
"ts-node": "10.9.2",
|
|
33
|
-
"typescript": "5.8.
|
|
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": "
|
|
39
|
+
"gitHead": "16e148e6ec2abac673c5ea1e42bbb666d421f357"
|
|
40
40
|
}
|