markuplint 4.6.1 → 4.7.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/version.js +4 -2
- package/package.json +13 -13
package/lib/version.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { createRequire } from 'node:module';
|
|
2
|
+
const require = createRequire(import.meta.url);
|
|
3
|
+
// TODO: Use import attribute in Node.js v22 and v20.10 or later
|
|
4
|
+
const pkg = require('../package.json');
|
|
3
5
|
export const version = pkg.version;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markuplint",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.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.
|
|
28
|
+
"@markuplint/cli-utils": "4.4.0",
|
|
29
|
+
"@markuplint/file-resolver": "4.7.0",
|
|
30
|
+
"@markuplint/html-parser": "4.6.0",
|
|
31
|
+
"@markuplint/html-spec": "4.7.0",
|
|
32
32
|
"@markuplint/i18n": "4.4.0",
|
|
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.
|
|
33
|
+
"@markuplint/ml-ast": "4.3.0",
|
|
34
|
+
"@markuplint/ml-config": "4.6.0",
|
|
35
|
+
"@markuplint/ml-core": "4.7.0",
|
|
36
|
+
"@markuplint/ml-spec": "4.5.0",
|
|
37
|
+
"@markuplint/rules": "4.7.0",
|
|
38
|
+
"@markuplint/shared": "4.3.0",
|
|
39
39
|
"@types/debug": "4.1.12",
|
|
40
40
|
"chokidar": "3.6.0",
|
|
41
41
|
"debug": "4.3.4",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"os-locale": "6.0.2",
|
|
45
45
|
"strict-event-emitter": "0.5.1",
|
|
46
46
|
"strip-ansi": "7.1.0",
|
|
47
|
-
"type-fest": "4.
|
|
47
|
+
"type-fest": "4.18.1"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "b8d7bae9bdcdad63ff79abe21b88be12abde3633"
|
|
50
50
|
}
|