create-zudo-doc 0.2.12 → 0.2.13

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/dist/scaffold.js CHANGED
@@ -333,16 +333,19 @@ function generatePackageJson(choices) {
333
333
  // "@takazudo/zfb" (#972) — plus removal of the no-op linkValidation.allowExternal
334
334
  // knob (#925); both are non-breaking for a fresh scaffold. A fresh scaffold
335
335
  // sets no explicit codeHighlight.theme so the default still applies. No
336
- // consumer-facing / CLI breaking change. next.52 (current pin): adds the
336
+ // consumer-facing / CLI breaking change. next.52: adds the
337
337
  // `ClientRouter({ preserveHtmlAttrs })` option (zfb#1104) — consumers can
338
338
  // declare runtime `<html>` attribute names to preserve across SPA swaps so
339
339
  // e.g. `data-sidebar-hidden` / `data-theme` survive (zudolab/zudo-doc#2200).
340
- // Additive, non-breaking for a fresh scaffold.
341
- "@takazudo/zfb": "0.1.0-next.52",
342
- "@takazudo/zfb-runtime": "0.1.0-next.52",
340
+ // Additive, non-breaking for a fresh scaffold. next.53 (current pin):
341
+ // zfb-content GFM-autolink fix — terminate the autolink path at CJK
342
+ // boundaries (zfb#1105). Content-rendering bug fix, additive; relevant for
343
+ // CJK (e.g. Japanese) docs. No consumer-facing / CLI breaking change.
344
+ "@takazudo/zfb": "0.1.0-next.53",
345
+ "@takazudo/zfb-runtime": "0.1.0-next.53",
343
346
  // zfb-adapter-cloudflare — required for any route with `prerender = false`.
344
347
  // Pinned in lockstep with @takazudo/zfb.
345
- "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.52",
348
+ "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.53",
346
349
  // @takazudo/zudo-doc — published from this monorepo via
347
350
  // .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
348
351
  // lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
@@ -354,7 +357,7 @@ function generatePackageJson(choices) {
354
357
  // ties this pin to packages/zudo-doc's version, so the lockstep release
355
358
  // bumps both together; do not cut a create-zudo-doc release until the
356
359
  // matching @takazudo/zudo-doc version (with content.css) is on npm.
357
- "@takazudo/zudo-doc": "^0.2.12",
360
+ "@takazudo/zudo-doc": "^0.2.13",
358
361
  // zod — used by the generated zfb.config.ts. zfb-config-gen emits
359
362
  // `import { z } from "zod"` for the content-collection schema +
360
363
  // `z.toJSONSchema(...)` conversion. Without this dep, the consumer
@@ -408,7 +411,7 @@ function generatePackageJson(choices) {
408
411
  // @takazudo/zudo-doc/integrations/doc-history which in turn imports
409
412
  // @takazudo/zudo-doc-history-server/git-history. Without this dep the
410
413
  // plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
411
- deps["@takazudo/zudo-doc-history-server"] = "^0.2.12";
414
+ deps["@takazudo/zudo-doc-history-server"] = "^0.2.13";
412
415
  // W7A (#1736): doc-history-plugin.mjs spawns `tsx -e <inline-script>` to
413
416
  // run the v2 runtime in a TS-aware Node subprocess; without tsx the
414
417
  // plugin's preBuild step exits with ENOENT before zfb finishes config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zudo-doc",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",
@@ -311,6 +311,7 @@ export function HeaderWithDefaults(
311
311
  lang={lang}
312
312
  currentPath={currentPath}
313
313
  currentVersion={currentVersion}
314
+ activeCategory={navSection}
314
315
  sidebarToggle={sidebarToggle}
315
316
  themeToggle={themeToggle}
316
317
  search={searchWidget}