create-zudo-doc 5.12.0 → 5.13.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 +12 -0
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +19 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.13.0] - 2026-08-27
|
|
8
|
+
|
|
9
|
+
### Other Changes
|
|
10
|
+
|
|
11
|
+
- Updated newly generated projects to the zfb 2.12.0 package family, including its standalone CSS compiler and abort-safe client-router swap behavior. (`9cf3fd4b`)
|
|
12
|
+
|
|
13
|
+
## [5.12.1] - 2026-08-24
|
|
14
|
+
|
|
15
|
+
### Other Changes
|
|
16
|
+
|
|
17
|
+
- Updated newly generated projects to use the zfb 2.10.1 package family. (`e995a459`)
|
|
18
|
+
|
|
7
19
|
## [5.12.0] - 2026-08-23
|
|
8
20
|
|
|
9
21
|
- No package-specific changes.
|
package/dist/scaffold.d.ts
CHANGED
|
@@ -32,5 +32,5 @@ export declare function deriveDocSkillName(projectName: string): string;
|
|
|
32
32
|
*
|
|
33
33
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
34
34
|
*/
|
|
35
|
-
export declare const ZUDO_DOC_PIN = "^5.
|
|
35
|
+
export declare const ZUDO_DOC_PIN = "^5.13.0";
|
|
36
36
|
export declare function scaffold(choices: UserChoices): Promise<void>;
|
package/dist/scaffold.js
CHANGED
|
@@ -43,7 +43,7 @@ export function deriveDocSkillName(projectName) {
|
|
|
43
43
|
*
|
|
44
44
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
45
45
|
*/
|
|
46
|
-
export const ZUDO_DOC_PIN = "^5.
|
|
46
|
+
export const ZUDO_DOC_PIN = "^5.13.0";
|
|
47
47
|
/**
|
|
48
48
|
* Files in `templates/base/**` that must not be copied by the unconditional
|
|
49
49
|
* base mirror. Each entry is matched against the path relative to
|
|
@@ -700,11 +700,24 @@ function generatePackageJson(choices) {
|
|
|
700
700
|
// default, so a fresh scaffold needs no config change to pick it up.
|
|
701
701
|
// Also fixes the client router to tolerate about:srcdoc history
|
|
702
702
|
// restrictions. No generator-side migration.
|
|
703
|
-
// 2.10.
|
|
703
|
+
// 2.10.1: routine toolchain bump from 2.10.0, adopted in lockstep with the
|
|
704
704
|
// root package.json pins. No generator-side migration.
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
705
|
+
// 2.11.0: additive only. Islands gain an observable post-mount DOM marker
|
|
706
|
+
// (`ISLAND_MOUNTED_ATTR` = `data-zfb-island-mounted`), written on the island
|
|
707
|
+
// wrapper after mount() returns and never emitted at SSR, with the
|
|
708
|
+
// documented consumer gate `[data-zfb-island]:not([data-zfb-island-mounted])`.
|
|
709
|
+
// Dev-server hydration readiness is now published atomically, renderHtml
|
|
710
|
+
// preserves custom component body HTML instead of flattening it, and the
|
|
711
|
+
// router reserves the `__paths__` route prefix. A fresh scaffold authors no
|
|
712
|
+
// `__paths__` route and opts into nothing here, so there is no
|
|
713
|
+
// generator-side migration.
|
|
714
|
+
// 2.12.0 adds the deterministic standalone `zfb css` command for compiling
|
|
715
|
+
// one CSS entrypoint without route discovery or page rendering, and fixes
|
|
716
|
+
// a Back race before ClientRouter DOM swaps. Both changes are additive
|
|
717
|
+
// tooling/runtime behavior; a fresh scaffold needs no config migration.
|
|
718
|
+
"@takazudo/zfb": "2.12.0",
|
|
719
|
+
"@takazudo/zfb-runtime": "2.12.0",
|
|
720
|
+
"@takazudo/zfb-md-wasm": "2.12.0",
|
|
708
721
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
709
722
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
710
723
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -826,7 +839,7 @@ function generatePackageJson(choices) {
|
|
|
826
839
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
827
840
|
// moved compileExclude into @takazudo/zudo-doc, so docHistory-OFF projects
|
|
828
841
|
// no longer need the package at all.
|
|
829
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.
|
|
842
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.13.0";
|
|
830
843
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
831
844
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
832
845
|
// dist/ — package-first migration #2321 (#2337).
|