create-zudo-doc 5.17.2 → 5.18.0

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
@@ -4,6 +4,12 @@ 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.0] - 2026-09-06
8
+
9
+ ### Other Changes
10
+
11
+ - 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`).
12
+
7
13
  ## [5.17.2] - 2026-09-05
8
14
 
9
15
  ### Bug Fixes
@@ -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.17.2";
34
+ export declare const ZUDO_DOC_PIN = "^5.18.0";
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.17.2";
50
+ export const ZUDO_DOC_PIN = "^5.18.0";
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.4.14",
843
+ "@takazudo/zdtp": "0.5.0",
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.17.2";
892
+ deps["@takazudo/zudo-doc-history-server"] = "^5.18.0";
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zudo-doc",
3
- "version": "5.17.2",
3
+ "version": "5.18.0",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",