markuplint 4.4.0 → 4.5.0
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/api/v1.d.ts +2 -1
- package/package.json +13 -13
package/lib/api/v1.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MLResultInfo } from '../types.js';
|
|
1
2
|
import type { Config, PlainData, RuleConfigValue } from '@markuplint/ml-config';
|
|
2
3
|
import type { MLRule } from '@markuplint/ml-core';
|
|
3
4
|
/**
|
|
@@ -48,4 +49,4 @@ export declare function lint_v1(options: {
|
|
|
48
49
|
* Locale
|
|
49
50
|
*/
|
|
50
51
|
readonly locale?: string;
|
|
51
|
-
}): Promise<
|
|
52
|
+
}): Promise<MLResultInfo[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markuplint",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "An HTML linter for all markup developers",
|
|
5
5
|
"author": "Yusuke Hirao",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"clean": "tsc --build --clean"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@markuplint/cli-utils": "4.
|
|
29
|
-
"@markuplint/file-resolver": "4.
|
|
30
|
-
"@markuplint/html-parser": "4.
|
|
31
|
-
"@markuplint/html-spec": "4.
|
|
32
|
-
"@markuplint/i18n": "4.
|
|
33
|
-
"@markuplint/ml-ast": "4.
|
|
34
|
-
"@markuplint/ml-config": "4.
|
|
35
|
-
"@markuplint/ml-core": "4.
|
|
36
|
-
"@markuplint/ml-spec": "4.
|
|
37
|
-
"@markuplint/rules": "4.
|
|
38
|
-
"@markuplint/shared": "4.
|
|
28
|
+
"@markuplint/cli-utils": "4.3.0",
|
|
29
|
+
"@markuplint/file-resolver": "4.5.0",
|
|
30
|
+
"@markuplint/html-parser": "4.4.0",
|
|
31
|
+
"@markuplint/html-spec": "4.5.0",
|
|
32
|
+
"@markuplint/i18n": "4.3.0",
|
|
33
|
+
"@markuplint/ml-ast": "4.2.0",
|
|
34
|
+
"@markuplint/ml-config": "4.4.0",
|
|
35
|
+
"@markuplint/ml-core": "4.5.0",
|
|
36
|
+
"@markuplint/ml-spec": "4.3.0",
|
|
37
|
+
"@markuplint/rules": "4.5.0",
|
|
38
|
+
"@markuplint/shared": "4.2.0",
|
|
39
39
|
"@types/debug": "4.1.12",
|
|
40
40
|
"chokidar": "3.6.0",
|
|
41
41
|
"debug": "4.3.4",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"strip-ansi": "7.1.0",
|
|
47
47
|
"type-fest": "4.14.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "ad3db077e96bea0666c9105b250f895263907a87"
|
|
50
50
|
}
|