create-zudo-doc 5.15.0 → 5.16.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 CHANGED
@@ -4,6 +4,16 @@ 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.16.1] - 2026-09-02
8
+
9
+ ### Other Changes
10
+
11
+ - Newly generated projects now use the zfb 2.14.3 package family. (`7e79f961a`)
12
+
13
+ ## [5.16.0] - 2026-09-02
14
+
15
+ - No package-specific changes.
16
+
7
17
  ## [5.15.0] - 2026-09-01
8
18
 
9
19
  ### Features
@@ -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.15.0";
34
+ export declare const ZUDO_DOC_PIN = "^5.16.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.15.0";
50
+ export const ZUDO_DOC_PIN = "^5.16.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
@@ -745,12 +745,12 @@ function generatePackageJson(choices, localePlan) {
745
745
  // Parser fixes also ship in zfb-md-wasm; runtime and the Cloudflare adapter
746
746
  // have no package-specific behavior change. Public exports and engine
747
747
  // requirements stay unchanged, so a fresh scaffold needs no migration.
748
- // 2.14.2: lockstep release metadata and rebuilt md-wasm artifacts only.
748
+ // 2.14.3: lockstep release metadata and rebuilt md-wasm artifacts only.
749
749
  // Public APIs, exports, config defaults, engine requirements, and shipped
750
750
  // wasm byte sizes stay unchanged, so a fresh scaffold needs no migration.
751
- "@takazudo/zfb": "2.14.2",
752
- "@takazudo/zfb-runtime": "2.14.2",
753
- "@takazudo/zfb-md-wasm": "2.14.2",
751
+ "@takazudo/zfb": "2.14.3",
752
+ "@takazudo/zfb-runtime": "2.14.3",
753
+ "@takazudo/zfb-md-wasm": "2.14.3",
754
754
  // @takazudo/zudo-doc — published from this monorepo via
755
755
  // .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
756
756
  // lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
@@ -878,7 +878,7 @@ function generatePackageJson(choices, localePlan) {
878
878
  // `/exclude` at module scope from the always-bundled chrome graph; #3110
879
879
  // moved compileExclude into @takazudo/zudo-doc, so projects with both
880
880
  // docHistory and assetViewer off no longer need the package at all.
881
- deps["@takazudo/zudo-doc-history-server"] = "^5.15.0";
881
+ deps["@takazudo/zudo-doc-history-server"] = "^5.16.1";
882
882
  // tsx is no longer needed here: the relocated package plugin imports the
883
883
  // runner directly (no `tsx -e` spawn) since the package ships compiled
884
884
  // 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.15.0",
3
+ "version": "5.16.1",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",