@markuplint/ml-core 4.10.0 → 4.10.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,16 +3,23 @@
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.10.0](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.9.0...@markuplint/ml-core@4.10.0) (2024-10-14)
6
+ ## [4.10.2](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.10.1...@markuplint/ml-core@4.10.2) (2024-10-27)
7
7
 
8
+ **Note:** Version bump only for package @markuplint/ml-core
8
9
 
9
- ### Features
10
10
 
11
- * **ml-core:** enabled control over parse-error output using `severity.parseError` ([7ef6d6a](https://github.com/markuplint/markuplint/commit/7ef6d6ad58845c81367d5a2944c254a12eeaa17e))
12
11
 
13
12
 
14
13
 
14
+ ## [4.10.1](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.10.0...@markuplint/ml-core@4.10.1) (2024-10-15)
15
+
16
+ **Note:** Version bump only for package @markuplint/ml-core
17
+
18
+ # [4.10.0](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.9.0...@markuplint/ml-core@4.10.0) (2024-10-14)
19
+
20
+ ### Features
15
21
 
22
+ - **ml-core:** enabled control over parse-error output using `severity.parseError` ([7ef6d6a](https://github.com/markuplint/markuplint/commit/7ef6d6ad58845c81367d5a2944c254a12eeaa17e))
16
23
 
17
24
  # [4.9.0](https://github.com/markuplint/markuplint/compare/@markuplint/ml-core@4.8.3...@markuplint/ml-core@4.9.0) (2024-09-23)
18
25
 
package/lib/ml-core.d.ts CHANGED
@@ -10,7 +10,7 @@ export type MLCoreParams = {
10
10
  export declare class MLCore {
11
11
  #private;
12
12
  constructor({ parser, sourceCode, ruleset, rules, locale, schemas, parserOptions, severity, pretenders, filename, debug, configErrors, }: MLCoreParams);
13
- get document(): ParserError | Document<RuleConfigValue, PlainData>;
13
+ get document(): Document<RuleConfigValue, PlainData> | ParserError;
14
14
  setCode(sourceCode: string): void;
15
15
  update({ parser, ruleset, rules, locale, schemas, parserOptions, configErrors }: Partial<MLFabric>): void;
16
16
  verify(fix?: boolean): Promise<Violation[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/ml-core",
3
- "version": "4.10.0",
3
+ "version": "4.10.2",
4
4
  "description": "The core module of markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -28,20 +28,20 @@
28
28
  "./lib/configs.js": "./lib/configs.browser.js"
29
29
  },
30
30
  "dependencies": {
31
- "@markuplint/config-presets": "4.5.7",
32
- "@markuplint/html-parser": "4.6.8",
33
- "@markuplint/html-spec": "4.9.2",
34
- "@markuplint/i18n": "4.5.4",
35
- "@markuplint/ml-ast": "4.4.5",
36
- "@markuplint/ml-config": "4.8.0",
37
- "@markuplint/ml-spec": "4.7.1",
38
- "@markuplint/parser-utils": "4.6.8",
39
- "@markuplint/selector": "4.6.8",
40
- "@markuplint/shared": "4.4.6",
31
+ "@markuplint/config-presets": "4.5.9",
32
+ "@markuplint/html-parser": "4.6.10",
33
+ "@markuplint/html-spec": "4.10.0",
34
+ "@markuplint/i18n": "4.5.6",
35
+ "@markuplint/ml-ast": "4.4.7",
36
+ "@markuplint/ml-config": "4.8.2",
37
+ "@markuplint/ml-spec": "4.8.0",
38
+ "@markuplint/parser-utils": "4.7.1",
39
+ "@markuplint/selector": "4.6.10",
40
+ "@markuplint/shared": "4.4.8",
41
41
  "@types/debug": "4.1.12",
42
42
  "debug": "4.3.7",
43
43
  "is-plain-object": "5.0.0",
44
44
  "type-fest": "4.26.1"
45
45
  },
46
- "gitHead": "e59d4e8b762c66c7e3fb8b0a0d9d99d5160b0afa"
46
+ "gitHead": "fab5b494f0bdc491aa83cb2c8722738d557fbefd"
47
47
  }