create-zudo-doc 5.24.1 → 5.24.2

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
@@ -8,6 +8,12 @@ The format is based on Keep a Changelog, and release notes are generated from th
8
8
 
9
9
  No unreleased changes.
10
10
 
11
+ ## [5.24.2] - 2026-09-15
12
+
13
+ ### Bug Fixes
14
+
15
+ - Generated projects list `diff` only when doc history is enabled (directly, or through `bodyFootUtil`), and no longer list `katex` by default. Projects that turn on `math: true` install `katex` themselves (`pnpm add katex`). (c778ca989)
16
+
11
17
  ## [5.24.1] - 2026-09-15
12
18
 
13
19
  ### Other Changes
@@ -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.24.1";
34
+ export declare const ZUDO_DOC_PIN = "^5.24.2";
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.24.1";
50
+ export const ZUDO_DOC_PIN = "^5.24.2";
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
@@ -821,25 +821,16 @@ function generatePackageJson(choices, localePlan) {
821
821
  // compiles. Same pin as host. Caught by W6B (#1735) consumer-build
822
822
  // verification.
823
823
  "preact-render-to-string": "^6.6.6",
824
- // katex server-side LaTeX renderer used by the always-on
825
- // pages/lib/_math-block.tsx (called from pages/_mdx-components.ts
826
- // for `$…$` and `$$…$$` math nodes). Caught by W6B (#1735)
827
- // consumer-build verification the import lives in the mirrored
828
- // pages, not behind any feature gate. Same pin as host.
829
- katex: "^0.16.38",
830
- // diff required at build time by EVERY generated project, not just
831
- // docHistory ones. The always-copied host base template
832
- // `pages/lib/_doc-history-area.tsx` statically imports the real
833
- // `DocHistory` from `@takazudo/zudo-doc/doc-history` (to keep zfb's island
834
- // scanner chain page→stub→DocHistory walkable), which pulls
835
- // `@takazudo/zudo-doc/dist/doc-history/index.js`'s `await import("diff")`
836
- // into the bundle. With packageOwnedRoutes default ON (1.0), a
837
- // docHistory-off project still bundles that path, so without `diff` here
838
- // `zfb build` fails at esbuild with "Could not resolve 'diff'" (#2342).
839
- // `diff` is an *optional* peerDependency of @takazudo/zudo-doc, so a
840
- // missing copy produces no `pnpm install` warning — which is why this gap
841
- // shipped silently and only surfaced at build time.
842
- diff: "^8.0.3",
824
+ // katex is intentionally ABSENT here. `math` is not a create-zudo-doc
825
+ // feature (it defaults to `false` in DEFAULT_SETTINGS) and
826
+ // @takazudo/zudo-doc now loads katex via a rejection-handled dynamic
827
+ // import that stays non-build-fatal when the package is absent (#4206 /
828
+ // #4209). A project that turns `math: true` on by hand must
829
+ // `pnpm add katex` itself — see the math-equations doc.
830
+ // diff is likewise intentionally ABSENT from this unconditional block
831
+ // it is added below, gated on the docHistory feature, for the same
832
+ // #4206 / #4209 reason: the doc-history route's `import("diff")` is now
833
+ // rejection-handled instead of build-fatal when docHistory is off.
843
834
  // (@takazudo/zdtp is NOT here — it is gated on the designTokenPanel
844
835
  // feature, see the block below. It WAS unconditional from #2660 through
845
836
  // #4018: `chrome/derive.tsx`'s `deriveBodyEndIslands` statically imports
@@ -881,6 +872,17 @@ function generatePackageJson(choices, localePlan) {
881
872
  // search ships as @takazudo/zudo-doc's own self-contained generated
882
873
  // search-widget script (custom word-match scorer) — no third-party search
883
874
  // engine dependency is needed here. Do not re-add minisearch/pagefind.
875
+ if (choices.features.includes("docHistory")) {
876
+ // diff powers the History dropdown's Compare view
877
+ // (`@takazudo/zudo-doc/doc-history`'s `await import("diff")`). #4209 made
878
+ // that import rejection-handled, so a docHistory-OFF project no longer
879
+ // needs the dep at all — including bodyFootUtil-only projects, since
880
+ // scaffold() already normalizes bodyFootUtil into docHistory before this
881
+ // function runs (see the co-enable block near the top of scaffold()).
882
+ // assetViewer alone does not reach this import and must not carry it
883
+ // (#4206 / #4209; it was an unconditional base dep before this fix).
884
+ deps.diff = "^8.0.3";
885
+ }
884
886
  if (choices.features.includes("designTokenPanel")) {
885
887
  // Only the design-token-panel feature graph reaches @takazudo/zdtp: the
886
888
  // panel payload loads through a rejection-handled `import("@takazudo/zdtp")`
@@ -892,9 +894,9 @@ function generatePackageJson(choices, localePlan) {
892
894
  }
893
895
  if (choices.features.includes("docHistory") ||
894
896
  choices.features.includes("assetViewer")) {
895
- // (`diff` remains an unconditional base dep — see the `deps` block above:
896
- // packageOwnedRoutes always bundles the doc-history-area path, whose
897
- // module-scope `diff` import is pulled in regardless of this flag. #2342.)
897
+ // (`diff` is gated separately, on docHistory alone — see the block just
898
+ // above this one. assetViewer does not reach the Compare view's
899
+ // `import("diff")`, so it must not add the dep on its own; #4206 / #4209.)
898
900
  //
899
901
  // @takazudo/zudo-doc-history-server is gated HERE because docHistory and
900
902
  // assetViewer are the only feature graphs that reach it. The doc-history
@@ -911,7 +913,7 @@ function generatePackageJson(choices, localePlan) {
911
913
  // `/exclude` at module scope from the always-bundled chrome graph; #3110
912
914
  // moved compileExclude into @takazudo/zudo-doc, so projects with both
913
915
  // docHistory and assetViewer off no longer need the package at all.
914
- deps["@takazudo/zudo-doc-history-server"] = "^5.24.1";
916
+ deps["@takazudo/zudo-doc-history-server"] = "^5.24.2";
915
917
  // tsx is no longer needed here: the relocated package plugin imports the
916
918
  // runner directly (no `tsx -e` spawn) since the package ships compiled
917
919
  // 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.24.1",
3
+ "version": "5.24.2",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",