@markuplint/ml-spec 4.6.2 → 4.6.3

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,19 @@
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.6.2](https://github.com/markuplint/markuplint/compare/@markuplint/ml-spec@4.6.1...@markuplint/ml-spec@4.6.2) (2024-06-09)
6
+ ## [4.6.3](https://github.com/markuplint/markuplint/compare/@markuplint/ml-spec@4.6.2...@markuplint/ml-spec@4.6.3) (2024-06-25)
7
7
 
8
+ **Note:** Version bump only for package @markuplint/ml-spec
8
9
 
9
- ### Bug Fixes
10
10
 
11
- * fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
12
11
 
13
12
 
14
13
 
14
+ ## [4.6.2](https://github.com/markuplint/markuplint/compare/@markuplint/ml-spec@4.6.1...@markuplint/ml-spec@4.6.2) (2024-06-09)
15
+
16
+ ### Bug Fixes
15
17
 
18
+ - fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
16
19
 
17
20
  ## [4.6.1](https://github.com/markuplint/markuplint/compare/@markuplint/ml-spec@4.6.0...@markuplint/ml-spec@4.6.1) (2024-05-28)
18
21
 
@@ -1,5 +1,5 @@
1
1
  import type { ARIAVersion, MLMLSpec } from '../types/index.js';
2
2
  export declare function getPermittedRoles(el: Element, version: ARIAVersion, specs: MLMLSpec): readonly {
3
3
  readonly name: string;
4
- readonly deprecated?: boolean | undefined;
4
+ readonly deprecated?: boolean;
5
5
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/ml-spec",
3
- "version": "4.6.2",
3
+ "version": "4.6.3",
4
4
  "description": "Types and schema that specs of the Markup languages for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -32,15 +32,15 @@
32
32
  "schema:prettier": "prettier --write \"./schemas/*.json\" \"./src/types/*.ts\" --log-level warn"
33
33
  },
34
34
  "dependencies": {
35
- "@markuplint/ml-ast": "4.4.1",
36
- "@markuplint/types": "4.5.2",
35
+ "@markuplint/ml-ast": "4.4.2",
36
+ "@markuplint/types": "4.5.3",
37
37
  "dom-accessibility-api": "0.6.3",
38
38
  "is-plain-object": "5.0.0",
39
- "type-fest": "4.20.0"
39
+ "type-fest": "4.20.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@markuplint/test-tools": "4.5.4",
42
+ "@markuplint/test-tools": "4.5.5",
43
43
  "json-schema-to-typescript": "14.0.5"
44
44
  },
45
- "gitHead": "0200dc1f7b1ffa7455b889696153e25dbae8241f"
45
+ "gitHead": "05fdca254661ec335ff0cae4c6a11db164b032b9"
46
46
  }