create-zudo-doc 5.17.0 → 5.17.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 +10 -5
- 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.17.1] - 2026-09-04
|
|
8
|
+
|
|
9
|
+
### Other Changes
|
|
10
|
+
|
|
11
|
+
- Newly generated projects now use the zfb 2.15.1 package family (`e54438e96`). This is a documentation-only upstream release with no behavior change — the shipped wasm artifacts are byte-size identical to 2.15.0 and a fresh scaffold needs no migration.
|
|
12
|
+
|
|
7
13
|
## [5.17.0] - 2026-09-04
|
|
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.17.
|
|
34
|
+
export declare const ZUDO_DOC_PIN = "^5.17.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.17.
|
|
50
|
+
export const ZUDO_DOC_PIN = "^5.17.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
|
|
@@ -754,9 +754,14 @@ function generatePackageJson(choices, localePlan) {
|
|
|
754
754
|
// build after upgrading re-renders cached content under the new grammar
|
|
755
755
|
// set. Token classes stay on the same semantic-role vocabulary, so themes
|
|
756
756
|
// need no new rules and a fresh scaffold needs no migration.
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
757
|
+
// 2.15.1: documentation-only upstream release — the md-wasm README gained a
|
|
758
|
+
// note about the artifact-size repair sequence's compression tolerance. The
|
|
759
|
+
// four shipped wasm binaries are byte-size identical to 2.15.0 (rebuild
|
|
760
|
+
// noise only), and no public API, export, config default, or engine
|
|
761
|
+
// requirement moves, so a fresh scaffold needs no migration.
|
|
762
|
+
"@takazudo/zfb": "2.15.1",
|
|
763
|
+
"@takazudo/zfb-runtime": "2.15.1",
|
|
764
|
+
"@takazudo/zfb-md-wasm": "2.15.1",
|
|
760
765
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
761
766
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
762
767
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -884,7 +889,7 @@ function generatePackageJson(choices, localePlan) {
|
|
|
884
889
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
885
890
|
// moved compileExclude into @takazudo/zudo-doc, so projects with both
|
|
886
891
|
// docHistory and assetViewer off no longer need the package at all.
|
|
887
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.17.
|
|
892
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.17.1";
|
|
888
893
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
889
894
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
890
895
|
// dist/ — package-first migration #2321 (#2337).
|