@markuplint/pretenders 5.0.0-rc.1 → 5.0.0-rc.4
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 +12 -0
- package/lib/dependency-mapper.d.ts +1 -1
- package/package.json +13 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
# [5.0.0-rc.4](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.3...v5.0.0-rc.4) (2026-04-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @markuplint/pretenders
|
|
9
|
+
|
|
10
|
+
# [5.0.0-rc.3](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.2...v5.0.0-rc.3) (2026-04-19)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @markuplint/pretenders
|
|
13
|
+
|
|
14
|
+
# [5.0.0-rc.2](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.1...v5.0.0-rc.2) (2026-04-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @markuplint/pretenders
|
|
17
|
+
|
|
6
18
|
# [5.0.0-rc.1](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.0...v5.0.0-rc.1) (2026-03-27)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @markuplint/pretenders
|
|
@@ -22,4 +22,4 @@ export declare function dependencyMapper(map: Readonly<PretenderDirectorMap>, na
|
|
|
22
22
|
* @param propName - The property to sort by (case-insensitive for strings)
|
|
23
23
|
* @returns A comparator function for use with `Array.prototype.sort()`
|
|
24
24
|
*/
|
|
25
|
-
export declare function propSort<T, P extends keyof T>(propName: P): (a: T, b: T) => 1 |
|
|
25
|
+
export declare function propSort<T, P extends keyof T>(propName: P): (a: T, b: T) => 1 | -1 | 0;
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/pretenders",
|
|
3
|
-
"version": "5.0.0-rc.
|
|
3
|
+
"version": "5.0.0-rc.4",
|
|
4
4
|
"description": "It loads components and then creates the pretenders data from them.",
|
|
5
|
-
"repository":
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/markuplint/markuplint.git",
|
|
8
|
+
"directory": "packages/@markuplint/pretenders"
|
|
9
|
+
},
|
|
6
10
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
7
11
|
"license": "MIT",
|
|
8
12
|
"engines": {
|
|
@@ -28,18 +32,18 @@
|
|
|
28
32
|
"clean": "tsc --build --clean tsconfig.build.json"
|
|
29
33
|
},
|
|
30
34
|
"dependencies": {
|
|
31
|
-
"@markuplint/ml-ast": "5.0.0-rc.
|
|
32
|
-
"@markuplint/ml-config": "5.0.0-rc.
|
|
33
|
-
"@markuplint/parser-utils": "5.0.0-rc.
|
|
35
|
+
"@markuplint/ml-ast": "5.0.0-rc.4",
|
|
36
|
+
"@markuplint/ml-config": "5.0.0-rc.4",
|
|
37
|
+
"@markuplint/parser-utils": "5.0.0-rc.4",
|
|
34
38
|
"es-module-lexer": "2.0.0",
|
|
35
39
|
"glob": "13.0.6",
|
|
36
40
|
"meow": "14.1.0",
|
|
37
41
|
"typescript": "6.0.2"
|
|
38
42
|
},
|
|
39
43
|
"optionalDependencies": {
|
|
40
|
-
"@markuplint/astro-parser": "5.0.0-rc.
|
|
41
|
-
"@markuplint/svelte-parser": "5.0.0-rc.
|
|
42
|
-
"@markuplint/vue-parser": "5.0.0-rc.
|
|
44
|
+
"@markuplint/astro-parser": "5.0.0-rc.4",
|
|
45
|
+
"@markuplint/svelte-parser": "5.0.0-rc.4",
|
|
46
|
+
"@markuplint/vue-parser": "5.0.0-rc.4"
|
|
43
47
|
},
|
|
44
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "97a6339bbae23f556de5d307b3ce2ef7cfd9402d"
|
|
45
49
|
}
|