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 +6 -0
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +26 -24
- package/package.json +1 -1
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
|
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.24.
|
|
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.
|
|
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
|
|
825
|
-
//
|
|
826
|
-
//
|
|
827
|
-
//
|
|
828
|
-
//
|
|
829
|
-
katex
|
|
830
|
-
// diff
|
|
831
|
-
//
|
|
832
|
-
//
|
|
833
|
-
//
|
|
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`
|
|
896
|
-
//
|
|
897
|
-
//
|
|
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.
|
|
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).
|