@markuplint/types 4.7.6-dev.110 → 4.7.7
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 +10 -0
- package/lib/token/token.d.ts +1 -1
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.7.7](https://github.com/markuplint/markuplint/compare/@markuplint/types@4.7.6...@markuplint/types@4.7.7) (2025-08-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- ensure that each `clean` command correctly removes build files ([110b78e](https://github.com/markuplint/markuplint/commit/110b78e85379d29a84ca68325127344a87a570b6))
|
|
11
|
+
|
|
12
|
+
## [4.7.6](https://github.com/markuplint/markuplint/compare/@markuplint/types@4.7.5...@markuplint/types@4.7.6) (2025-04-13)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @markuplint/types
|
|
15
|
+
|
|
6
16
|
## [4.7.5](https://github.com/markuplint/markuplint/compare/@markuplint/types@4.7.4...@markuplint/types@4.7.5) (2025-03-09)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @markuplint/types
|
package/lib/token/token.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare class Token {
|
|
|
30
30
|
line: number;
|
|
31
31
|
column: number;
|
|
32
32
|
};
|
|
33
|
-
static getType(value: string, separators?: readonly string[]): 1 |
|
|
33
|
+
static getType(value: string, separators?: readonly string[]): 1 | 18 | 13;
|
|
34
34
|
static shiftLocation(token: Readonly<Token>, offset: number): {
|
|
35
35
|
offset: number;
|
|
36
36
|
line: number;
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/types",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.7",
|
|
4
4
|
"description": "Type declaration and value checker",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"private": false,
|
|
9
8
|
"type": "module",
|
|
10
9
|
"exports": {
|
|
11
10
|
".": {
|
|
@@ -22,24 +21,24 @@
|
|
|
22
21
|
"scripts": {
|
|
23
22
|
"build": "tsc --project tsconfig.build.json",
|
|
24
23
|
"dev": "tsc --watch --project tsconfig.build.json",
|
|
25
|
-
"clean": "tsc --build --clean",
|
|
24
|
+
"clean": "tsc --build --clean tsconfig.build.json",
|
|
26
25
|
"schema": "run-s schema:types schema:schema build schema:prettier schema:eslint schema:prettier",
|
|
27
26
|
"schema:types": "tsx \"./gen/types.ts\"",
|
|
28
|
-
"schema:schema": "json2ts \"./types.schema.json\" > \"./src/types.schema.ts\"",
|
|
29
|
-
"schema:eslint": "eslint --fix \"./src/types.schema.ts\"",
|
|
30
|
-
"schema:prettier": "prettier --write \"./src/types.schema.ts\" \"./types.schema.json\" --log-level warn"
|
|
27
|
+
"schema:schema": "npx json2ts \"./types.schema.json\" > \"./src/types.schema.ts\"",
|
|
28
|
+
"schema:eslint": "npx eslint --fix \"./src/types.schema.ts\"",
|
|
29
|
+
"schema:prettier": "npx prettier --write \"./src/types.schema.ts\" \"./types.schema.json\" --log-level warn"
|
|
31
30
|
},
|
|
32
31
|
"dependencies": {
|
|
33
|
-
"@markuplint/shared": "4.4.
|
|
32
|
+
"@markuplint/shared": "4.4.12",
|
|
34
33
|
"@types/css-tree": "2.3.10",
|
|
35
34
|
"@types/debug": "4.1.12",
|
|
36
35
|
"@types/whatwg-mimetype": "3.0.2",
|
|
37
36
|
"bcp-47": "2.1.0",
|
|
38
37
|
"css-tree": "3.1.0",
|
|
39
|
-
"debug": "4.4.
|
|
38
|
+
"debug": "4.4.1",
|
|
40
39
|
"leven": "4.0.0",
|
|
41
|
-
"type-fest": "4.
|
|
40
|
+
"type-fest": "4.41.0",
|
|
42
41
|
"whatwg-mimetype": "4.0.0"
|
|
43
42
|
},
|
|
44
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
|
|
45
44
|
}
|