create-zudo-doc 5.19.0 → 5.19.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 +19 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.19.1] - 2026-09-08
|
|
8
|
+
|
|
9
|
+
### Other Changes
|
|
10
|
+
|
|
11
|
+
- A generated project's `package.json` now pins `@takazudo/zfb`, `@takazudo/zfb-runtime`, and `@takazudo/zfb-md-wasm` at `2.16.0`, and `@takazudo/zdtp` at `0.5.2` when the Design Token Panel feature is enabled (`47c149385`). Both upstream releases are drop-in for a fresh scaffold — zfb 2.16.0 fixes an `ETXTBSY` crash when first executing a just-written esbuild binary, zdtp 0.5.2 is additive — so no public API, export, config default, or engine requirement moves and a fresh scaffold needs no migration.
|
|
12
|
+
|
|
7
13
|
## [5.19.0] - 2026-09-07
|
|
8
14
|
|
|
9
15
|
### Features
|
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.19.
|
|
34
|
+
export declare const ZUDO_DOC_PIN = "^5.19.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.19.
|
|
50
|
+
export const ZUDO_DOC_PIN = "^5.19.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
|
|
@@ -759,9 +759,22 @@ function generatePackageJson(choices, localePlan) {
|
|
|
759
759
|
// four shipped wasm binaries are byte-size identical to 2.15.0 (rebuild
|
|
760
760
|
// noise only), and no public API, export, config default, or engine
|
|
761
761
|
// requirement moves, so a fresh scaffold needs no migration.
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
762
|
+
// 2.16.0: one upstream bug fix, plus a documentation-only md-wasm change.
|
|
763
|
+
// zfb's esbuild version-gate spawn (`ensure_binary_verified`) now retries on
|
|
764
|
+
// `ETXTBSY` through zfb-build's existing retry loop instead of a bare
|
|
765
|
+
// `.output()`, so a build no longer dies with `Text file busy (os error 26)`
|
|
766
|
+
// on the first exec of a binary a packaged zfb has only just written to a
|
|
767
|
+
// tempdir. The fix ships in the five platform binary packages, which roll to
|
|
768
|
+
// 2.16.0 with the wrapper. zfb-runtime and zfb-adapter-cloudflare have no
|
|
769
|
+
// package-specific change; md-wasm changes only its README (a digest
|
|
770
|
+
// disclaimer beside the shipped-size table), keeps every artifact at its
|
|
771
|
+
// 2.15.1 byte size, and moves all four wasm SHA-256 digests as every release
|
|
772
|
+
// does — pin by semver, as here, and there is nothing to re-pin. No public
|
|
773
|
+
// API, export, config default, or engine requirement moves, so a fresh
|
|
774
|
+
// scaffold needs no migration.
|
|
775
|
+
"@takazudo/zfb": "2.16.0",
|
|
776
|
+
"@takazudo/zfb-runtime": "2.16.0",
|
|
777
|
+
"@takazudo/zfb-md-wasm": "2.16.0",
|
|
765
778
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
766
779
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
767
780
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -869,7 +882,7 @@ function generatePackageJson(choices, localePlan) {
|
|
|
869
882
|
// `@takazudo/zdtp/styles.css` (see features/design-token-panel.ts). Both are
|
|
870
883
|
// no-ops with the feature off, so an OFF project must not carry the dep
|
|
871
884
|
// (#4009 / #4018 — it was unconditional until then, see the `deps` block).
|
|
872
|
-
deps["@takazudo/zdtp"] = "0.5.
|
|
885
|
+
deps["@takazudo/zdtp"] = "0.5.2";
|
|
873
886
|
}
|
|
874
887
|
if (choices.features.includes("docHistory") ||
|
|
875
888
|
choices.features.includes("assetViewer")) {
|
|
@@ -892,7 +905,7 @@ function generatePackageJson(choices, localePlan) {
|
|
|
892
905
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
893
906
|
// moved compileExclude into @takazudo/zudo-doc, so projects with both
|
|
894
907
|
// docHistory and assetViewer off no longer need the package at all.
|
|
895
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.19.
|
|
908
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.19.1";
|
|
896
909
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
897
910
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
898
911
|
// dist/ — package-first migration #2321 (#2337).
|