markuplint 4.9.1-alpha.1 → 4.9.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/CHANGELOG.md +6 -4
- package/lib/cli/command.js +2 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,20 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [4.9.
|
|
6
|
+
## [4.9.2](https://github.com/markuplint/markuplint/compare/markuplint@4.9.1...markuplint@4.9.2) (2024-06-25)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
*
|
|
11
|
+
* **markuplint:** ensure `--config` option correctly handles absolute paths ([fd36c1a](https://github.com/markuplint/markuplint/commit/fd36c1a4475f71d8b1e83212a60639c7361cd702))
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
## [4.9.1
|
|
17
|
+
## [4.9.1](https://github.com/markuplint/markuplint/compare/markuplint@4.9.0...markuplint@4.9.1) (2024-06-09)
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
|
|
20
22
|
|
|
21
23
|
# [4.9.0](https://github.com/markuplint/markuplint/compare/markuplint@4.8.1...markuplint@4.9.0) (2024-05-28)
|
|
22
24
|
|
package/lib/cli/command.js
CHANGED
|
@@ -6,7 +6,8 @@ import { log } from '../debug.js';
|
|
|
6
6
|
import { output } from './output.js';
|
|
7
7
|
export async function command(files, options, apiOptions) {
|
|
8
8
|
const fix = options.fix;
|
|
9
|
-
const configFile = options.config &&
|
|
9
|
+
const configFile = options.config &&
|
|
10
|
+
(path.isAbsolute(options.config) ? options.config : path.resolve(process.cwd(), options.config));
|
|
10
11
|
const locale = options.locale;
|
|
11
12
|
const searchConfig = options.searchConfig;
|
|
12
13
|
const ignoreExt = options.ignoreExt;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markuplint",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.2",
|
|
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.4.
|
|
29
|
-
"@markuplint/file-resolver": "4.
|
|
30
|
-
"@markuplint/html-parser": "4.6.
|
|
31
|
-
"@markuplint/html-spec": "4.8.
|
|
32
|
-
"@markuplint/i18n": "4.5.1
|
|
33
|
-
"@markuplint/ml-ast": "4.4.
|
|
34
|
-
"@markuplint/ml-config": "4.7.
|
|
35
|
-
"@markuplint/ml-core": "4.8.
|
|
36
|
-
"@markuplint/ml-spec": "4.6.
|
|
37
|
-
"@markuplint/rules": "4.9.
|
|
38
|
-
"@markuplint/shared": "4.4.
|
|
28
|
+
"@markuplint/cli-utils": "4.4.3",
|
|
29
|
+
"@markuplint/file-resolver": "4.9.0",
|
|
30
|
+
"@markuplint/html-parser": "4.6.5",
|
|
31
|
+
"@markuplint/html-spec": "4.8.2",
|
|
32
|
+
"@markuplint/i18n": "4.5.1",
|
|
33
|
+
"@markuplint/ml-ast": "4.4.2",
|
|
34
|
+
"@markuplint/ml-config": "4.7.2",
|
|
35
|
+
"@markuplint/ml-core": "4.8.2",
|
|
36
|
+
"@markuplint/ml-spec": "4.6.3",
|
|
37
|
+
"@markuplint/rules": "4.9.3",
|
|
38
|
+
"@markuplint/shared": "4.4.3",
|
|
39
39
|
"@types/debug": "4.1.12",
|
|
40
40
|
"chokidar": "3.6.0",
|
|
41
41
|
"debug": "4.3.5",
|
|
@@ -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.20.1"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "05fdca254661ec335ff0cae4c6a11db164b032b9"
|
|
50
50
|
}
|