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 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.1-alpha.1](https://github.com/markuplint/markuplint/compare/markuplint@4.9.1-alpha.0...markuplint@4.9.1-alpha.1) (2024-06-02)
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
- * fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
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-alpha.0](https://github.com/markuplint/markuplint/compare/markuplint@4.9.0...markuplint@4.9.1-alpha.0) (2024-06-02)
17
+ ## [4.9.1](https://github.com/markuplint/markuplint/compare/markuplint@4.9.0...markuplint@4.9.1) (2024-06-09)
18
18
 
19
- **Note:** Version bump only for package markuplint
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
 
@@ -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 && path.join(process.cwd(), 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.1-alpha.1",
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.2-alpha.1",
29
- "@markuplint/file-resolver": "4.8.1-alpha.1",
30
- "@markuplint/html-parser": "4.6.4-alpha.1",
31
- "@markuplint/html-spec": "4.8.1-alpha.1",
32
- "@markuplint/i18n": "4.5.1-alpha.1",
33
- "@markuplint/ml-ast": "4.4.1-alpha.1",
34
- "@markuplint/ml-config": "4.7.1-alpha.1",
35
- "@markuplint/ml-core": "4.8.1-alpha.1",
36
- "@markuplint/ml-spec": "4.6.2-alpha.1",
37
- "@markuplint/rules": "4.9.2-alpha.1",
38
- "@markuplint/shared": "4.4.2-alpha.1",
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.18.3"
47
+ "type-fest": "4.20.1"
48
48
  },
49
- "gitHead": "938c2164b55ad729da47a1851dc396c0033de3f7"
49
+ "gitHead": "05fdca254661ec335ff0cae4c6a11db164b032b9"
50
50
  }