markuplint 3.12.1 → 3.14.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markuplint",
3
- "version": "3.12.1",
3
+ "version": "3.14.0",
4
4
  "description": "An HTML linter for all markup developers",
5
5
  "author": "Yusuke Hirao",
6
6
  "license": "MIT",
@@ -20,22 +20,22 @@
20
20
  "clean": "tsc --build --clean"
21
21
  },
22
22
  "dependencies": {
23
- "@markuplint/create-rule-helper": "3.12.1",
24
- "@markuplint/file-resolver": "3.12.1",
25
- "@markuplint/html-parser": "3.10.1",
26
- "@markuplint/html-spec": "3.11.1",
27
- "@markuplint/i18n": "3.9.0",
23
+ "@markuplint/create-rule-helper": "3.14.0",
24
+ "@markuplint/file-resolver": "3.14.0",
25
+ "@markuplint/html-parser": "3.12.0",
26
+ "@markuplint/html-spec": "3.13.0",
27
+ "@markuplint/i18n": "3.10.0",
28
28
  "@markuplint/ml-ast": "3.2.0",
29
- "@markuplint/ml-config": "3.11.1",
30
- "@markuplint/ml-core": "3.12.1",
31
- "@markuplint/ml-spec": "3.11.1",
32
- "@markuplint/rules": "3.12.1",
29
+ "@markuplint/ml-config": "3.13.0",
30
+ "@markuplint/ml-core": "3.14.0",
31
+ "@markuplint/ml-spec": "3.13.0",
32
+ "@markuplint/rules": "3.14.0",
33
33
  "@markuplint/shared": "3.8.0",
34
- "@types/cli-color": "^2.0.3",
35
- "@types/debug": "^4.1.8",
34
+ "@types/cli-color": "^2.0.4",
35
+ "@types/debug": "^4.1.10",
36
36
  "@types/has-yarn": "^1.0.1",
37
37
  "@types/meow": "^6.0.0",
38
- "@types/uuid": "^9.0.3",
38
+ "@types/uuid": "^9.0.6",
39
39
  "chokidar": "^3.5.3",
40
40
  "cli-color": "^2.0.3",
41
41
  "debug": "^4.3.4",
@@ -48,11 +48,11 @@
48
48
  "meow": "9",
49
49
  "node-fetch": "2",
50
50
  "os-locale": "5",
51
- "strict-event-emitter": "^0.5.0",
51
+ "strict-event-emitter": "^0.5.1",
52
52
  "strip-ansi": "6",
53
53
  "tslib": "^2.6.2",
54
- "type-fest": "^4.3.1",
55
- "uuid": "^9.0.0"
54
+ "type-fest": "^4.5.0",
55
+ "uuid": "^9.0.1"
56
56
  },
57
- "gitHead": "09100b8baa14dd930602daa458197322197c79c2"
57
+ "gitHead": "e2adbe92c74631af9c98cb816286287f9f983053"
58
58
  }
@@ -1 +0,0 @@
1
- export declare function getJsonModule<T extends {}>(modulePath: string): T | null;
@@ -1,10 +0,0 @@
1
- import { createRequire } from 'node:module';
2
- const require = createRequire(import.meta.url);
3
- export function getJsonModule(modulePath) {
4
- try {
5
- return require(modulePath);
6
- }
7
- catch (_) {
8
- return null;
9
- }
10
- }
package/lib/version.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const version: string;
package/lib/version.js DELETED
@@ -1,3 +0,0 @@
1
- // @ts-ignore
2
- import pkg from '../package.json' assert { type: 'json' };
3
- export const version = pkg.version;