create-zudo-doc 5.24.0 → 5.24.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 +6 -0
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +11 -5
- 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.1] - 2026-09-15
|
|
12
|
+
|
|
13
|
+
### Other Changes
|
|
14
|
+
|
|
15
|
+
- Generated projects now pin `@takazudo/zfb`, `@takazudo/zfb-runtime`, and `@takazudo/zfb-md-wasm` to `2.17.0`. That release updates the YAML frontmatter parser and changes no API, so existing projects need no migration (a30a832b3)
|
|
16
|
+
|
|
11
17
|
## [5.24.0] - 2026-09-13
|
|
12
18
|
|
|
13
19
|
- No package-specific 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.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.24.
|
|
50
|
+
export const ZUDO_DOC_PIN = "^5.24.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
|
|
@@ -772,9 +772,15 @@ function generatePackageJson(choices, localePlan) {
|
|
|
772
772
|
// does — pin by semver, as here, and there is nothing to re-pin. No public
|
|
773
773
|
// API, export, config default, or engine requirement moves, so a fresh
|
|
774
774
|
// scaffold needs no migration.
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
775
|
+
// 2.17.0: zfb and md-wasm bump the YAML frontmatter parser to
|
|
776
|
+
// noyalib-serde-yaml 0.0.43 (upstream reports every YAML corpus case parses
|
|
777
|
+
// byte-identically), which recompiles the four wasm artifacts at slightly
|
|
778
|
+
// moved sizes; zfb-runtime and zfb-adapter-cloudflare change only their
|
|
779
|
+
// README/description. No public API, export, config default, or engine
|
|
780
|
+
// requirement moves, so a fresh scaffold needs no migration.
|
|
781
|
+
"@takazudo/zfb": "2.17.0",
|
|
782
|
+
"@takazudo/zfb-runtime": "2.17.0",
|
|
783
|
+
"@takazudo/zfb-md-wasm": "2.17.0",
|
|
778
784
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
779
785
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
780
786
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -905,7 +911,7 @@ function generatePackageJson(choices, localePlan) {
|
|
|
905
911
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
906
912
|
// moved compileExclude into @takazudo/zudo-doc, so projects with both
|
|
907
913
|
// docHistory and assetViewer off no longer need the package at all.
|
|
908
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.24.
|
|
914
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.24.1";
|
|
909
915
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
910
916
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
911
917
|
// dist/ — package-first migration #2321 (#2337).
|