markuplint 4.0.0-alpha.1 → 4.0.0-alpha.2
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/README.md +3 -1
- package/package.json +24 -21
package/README.md
CHANGED
|
@@ -121,8 +121,10 @@ Need [Sponsors❤️🔥](https://github.com/sponsors/markuplint)
|
|
|
121
121
|
### Personal Supporters
|
|
122
122
|
|
|
123
123
|
[<img width="36" src="https://avatars.githubusercontent.com/u/91733847" alt="Tokitake" />](https://github.com/Tokitake)
|
|
124
|
-
[<img width="36" src="https://avatars.githubusercontent.com/u/1996642" alt="
|
|
124
|
+
[<img width="36" src="https://avatars.githubusercontent.com/u/1996642" alt="Okuto Oyama" />](https://github.com/yamanoku)
|
|
125
125
|
[<img width="36" src="https://avatars.githubusercontent.com/u/6581173" alt="miita" />](https://github.com/mikimhk)
|
|
126
|
+
[<img width="36" src="https://avatars.githubusercontent.com/u/111797" alt="Yasuo Fukuda" />](https://github.com/sigwyg)
|
|
127
|
+
[<img width="36" src="https://avatars.githubusercontent.com/u/802921" alt="Hideyuki Saito" />](https://github.com/hideyukisaito)
|
|
126
128
|
|
|
127
129
|
## Thanks
|
|
128
130
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markuplint",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.2",
|
|
4
4
|
"description": "An HTML linter for all markup developers",
|
|
5
5
|
"author": "Yusuke Hirao",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,23 +24,26 @@
|
|
|
24
24
|
"dev": "tsc --build --watch",
|
|
25
25
|
"clean": "tsc --build --clean"
|
|
26
26
|
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"execa": "^8.0.1"
|
|
29
|
+
},
|
|
27
30
|
"dependencies": {
|
|
28
|
-
"@markuplint/create-rule-helper": "4.0.0-alpha.
|
|
29
|
-
"@markuplint/file-resolver": "4.0.0-alpha.
|
|
30
|
-
"@markuplint/html-parser": "4.0.0-alpha.
|
|
31
|
-
"@markuplint/html-spec": "4.0.0-alpha.
|
|
32
|
-
"@markuplint/i18n": "4.0.0-alpha.
|
|
33
|
-
"@markuplint/ml-ast": "4.0.0-alpha.
|
|
34
|
-
"@markuplint/ml-config": "4.0.0-alpha.
|
|
35
|
-
"@markuplint/ml-core": "4.0.0-alpha.
|
|
36
|
-
"@markuplint/ml-spec": "4.0.0-alpha.
|
|
37
|
-
"@markuplint/rules": "4.0.0-alpha.
|
|
38
|
-
"@markuplint/shared": "4.0.0-alpha.
|
|
39
|
-
"@types/cli-color": "^2.0.
|
|
40
|
-
"@types/debug": "^4.1.
|
|
31
|
+
"@markuplint/create-rule-helper": "4.0.0-alpha.2",
|
|
32
|
+
"@markuplint/file-resolver": "4.0.0-alpha.2",
|
|
33
|
+
"@markuplint/html-parser": "4.0.0-alpha.2",
|
|
34
|
+
"@markuplint/html-spec": "4.0.0-alpha.2",
|
|
35
|
+
"@markuplint/i18n": "4.0.0-alpha.2",
|
|
36
|
+
"@markuplint/ml-ast": "4.0.0-alpha.2",
|
|
37
|
+
"@markuplint/ml-config": "4.0.0-alpha.2",
|
|
38
|
+
"@markuplint/ml-core": "4.0.0-alpha.2",
|
|
39
|
+
"@markuplint/ml-spec": "4.0.0-alpha.2",
|
|
40
|
+
"@markuplint/rules": "4.0.0-alpha.2",
|
|
41
|
+
"@markuplint/shared": "4.0.0-alpha.2",
|
|
42
|
+
"@types/cli-color": "^2.0.3",
|
|
43
|
+
"@types/debug": "^4.1.9",
|
|
41
44
|
"@types/has-yarn": "^1.0.1",
|
|
42
45
|
"@types/meow": "^6.0.0",
|
|
43
|
-
"@types/uuid": "^9.0.
|
|
46
|
+
"@types/uuid": "^9.0.4",
|
|
44
47
|
"chokidar": "^3.5.3",
|
|
45
48
|
"cli-color": "^2.0.3",
|
|
46
49
|
"debug": "^4.3.4",
|
|
@@ -50,14 +53,14 @@
|
|
|
50
53
|
"get-stdin": "^9.0.0",
|
|
51
54
|
"gray-matter": "^4.0.3",
|
|
52
55
|
"has-yarn": "^3.0.0",
|
|
53
|
-
"meow": "^12.
|
|
56
|
+
"meow": "^12.1.1",
|
|
54
57
|
"node-fetch": "^3.3.2",
|
|
55
58
|
"os-locale": "^6.0.2",
|
|
56
|
-
"strict-event-emitter": "^0.5.
|
|
59
|
+
"strict-event-emitter": "^0.5.1",
|
|
57
60
|
"strip-ansi": "^7.1.0",
|
|
58
|
-
"tslib": "^2.6.
|
|
59
|
-
"type-fest": "^4.1
|
|
60
|
-
"uuid": "^9.0.
|
|
61
|
+
"tslib": "^2.6.2",
|
|
62
|
+
"type-fest": "^4.3.1",
|
|
63
|
+
"uuid": "^9.0.1"
|
|
61
64
|
},
|
|
62
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "51ad52c760435641f9bff8685707d8178b0787eb"
|
|
63
66
|
}
|