@markuplint/ml-spec 4.6.2-alpha.1 → 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,20 +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-alpha.1](https://github.com/markuplint/markuplint/compare/@markuplint/ml-spec@4.6.2-alpha.0...@markuplint/ml-spec@4.6.2-alpha.1) (2024-06-02)
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
-
11
- * fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
12
10
 
13
11
 
14
12
 
15
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)
16
15
 
17
- ## [4.6.2-alpha.0](https://github.com/markuplint/markuplint/compare/@markuplint/ml-spec@4.6.1...@markuplint/ml-spec@4.6.2-alpha.0) (2024-06-02)
16
+ ### Bug Fixes
18
17
 
19
- **Note:** Version bump only for package @markuplint/ml-spec
18
+ - fix to export type files ([eff4bbf](https://github.com/markuplint/markuplint/commit/eff4bbfd127574809dc5e15d7cafe87699758ee0))
20
19
 
21
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)
22
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-alpha.1",
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>",
@@ -24,7 +24,7 @@
24
24
  "dev": "tsc --build --watch",
25
25
  "clean": "tsc --build --clean",
26
26
  "schema": "run-s schema:json schema:content-models schema:attributes schema:aria schema:prettier schema:eslint schema:prettier",
27
- "schema:json": "node --loader ts-node/esm ./gen/gen.ts",
27
+ "schema:json": "tsx ./gen/gen.ts",
28
28
  "schema:content-models": "json2ts ./schemas/content-models.schema.json > ./src/types/permitted-structures.ts",
29
29
  "schema:attributes": "json2ts ./schemas/attributes.schema.json --cwd ./schemas > ./src/types/attributes.ts",
30
30
  "schema:aria": "json2ts ./schemas/aria.schema.json --cwd ./schemas > ./src/types/aria.ts",
@@ -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-alpha.1",
36
- "@markuplint/types": "4.5.2-alpha.1",
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.18.3"
39
+ "type-fest": "4.20.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@markuplint/test-tools": "4.5.4-alpha.1",
43
- "json-schema-to-typescript": "14.0.4"
42
+ "@markuplint/test-tools": "4.5.5",
43
+ "json-schema-to-typescript": "14.0.5"
44
44
  },
45
- "gitHead": "938c2164b55ad729da47a1851dc396c0033de3f7"
45
+ "gitHead": "05fdca254661ec335ff0cae4c6a11db164b032b9"
46
46
  }