create-zudo-doc 5.17.2 → 5.18.1
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 +13 -0
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to `create-zudo-doc` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on Keep a Changelog, and release notes are generated from the changelog MDX pages.
|
|
6
6
|
|
|
7
|
+
## [5.18.1] - 2026-09-06
|
|
8
|
+
|
|
9
|
+
### Other Changes
|
|
10
|
+
|
|
11
|
+
- Generated projects now pin `@takazudo/zdtp` at `0.5.1` (was `0.5.0`). A newly scaffolded project picks up zdtp's panel-width, header-overflow, and doc-adoption fixes, plus the persisted `spawn-ordinal` storage key that keeps multiple panels in stable cascade positions across client-side navigation. (4a72db50d)
|
|
12
|
+
- Generated projects inherit the page-loading spinner contrast fix through `@takazudo/zudo-doc@^5.18.1` — see that package's 5.18.1 notes for the new `--color-page-loading-spinner` token and the reduced-motion change. (4fa1651b2)
|
|
13
|
+
|
|
14
|
+
## [5.18.0] - 2026-09-06
|
|
15
|
+
|
|
16
|
+
### Other Changes
|
|
17
|
+
|
|
18
|
+
- A generated project now pins `@takazudo/zdtp` at `0.5.0` (was `0.4.14`), matching the peer requirement of the `@takazudo/zudo-doc` released alongside it (`a55182f9c`).
|
|
19
|
+
|
|
7
20
|
## [5.17.2] - 2026-09-05
|
|
8
21
|
|
|
9
22
|
### Bug Fixes
|
package/dist/scaffold.d.ts
CHANGED
|
@@ -31,5 +31,5 @@ export declare function deriveDocSkillName(projectName: string): string;
|
|
|
31
31
|
*
|
|
32
32
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
33
33
|
*/
|
|
34
|
-
export declare const ZUDO_DOC_PIN = "^5.
|
|
34
|
+
export declare const ZUDO_DOC_PIN = "^5.18.1";
|
|
35
35
|
export declare function scaffold(choices: UserChoices): Promise<void>;
|
package/dist/scaffold.js
CHANGED
|
@@ -47,7 +47,7 @@ export function deriveDocSkillName(projectName) {
|
|
|
47
47
|
*
|
|
48
48
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
49
49
|
*/
|
|
50
|
-
export const ZUDO_DOC_PIN = "^5.
|
|
50
|
+
export const ZUDO_DOC_PIN = "^5.18.1";
|
|
51
51
|
/**
|
|
52
52
|
* Files in `templates/base/**` that must not be copied by the unconditional
|
|
53
53
|
* base mirror. Each entry is matched against the path relative to
|
|
@@ -840,7 +840,7 @@ function generatePackageJson(choices, localePlan) {
|
|
|
840
840
|
// same reason. This is the ACCEPTED, permanent contract per #2668 — see
|
|
841
841
|
// the "@takazudo/zdtp dep implication" note in
|
|
842
842
|
// packages/zudo-doc/docs/adr/route-injection-seam.md.
|
|
843
|
-
"@takazudo/zdtp": "0.
|
|
843
|
+
"@takazudo/zdtp": "0.5.1",
|
|
844
844
|
// (@takazudo/zudo-doc-history-server is NOT here — it is gated on the
|
|
845
845
|
// docHistory or assetViewer features, see the block below. It was briefly unconditional
|
|
846
846
|
// (#3080) to work around doc-history-area importing its `/exclude` subpath
|
|
@@ -889,7 +889,7 @@ function generatePackageJson(choices, localePlan) {
|
|
|
889
889
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
890
890
|
// moved compileExclude into @takazudo/zudo-doc, so projects with both
|
|
891
891
|
// docHistory and assetViewer off no longer need the package at all.
|
|
892
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.
|
|
892
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.18.1";
|
|
893
893
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
894
894
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
895
895
|
// dist/ — package-first migration #2321 (#2337).
|