create-zudo-doc 5.2.0 → 5.3.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/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +9 -6
- package/package.json +1 -1
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.3.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.3.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
|
|
@@ -579,9 +579,12 @@ function generatePackageJson(choices) {
|
|
|
579
579
|
// there is no generator-side migration. Additive alongside it:
|
|
580
580
|
// `strictContentBridge`, a build-only gate that fails `zfb build` when a
|
|
581
581
|
// collection entry falls back to `<pre data-zfb-content-fallback>`.
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
582
|
+
// 2.3.0/2.3.1: additive + bugfix only (desktop TOC collapse toggle,
|
|
583
|
+
// markdown fragment validation fixes, dev-server CSS rebuild loop fix).
|
|
584
|
+
// No generator-side migration.
|
|
585
|
+
"@takazudo/zfb": "2.3.1",
|
|
586
|
+
"@takazudo/zfb-runtime": "2.3.1",
|
|
587
|
+
"@takazudo/zfb-md-wasm": "2.3.1",
|
|
585
588
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
586
589
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
587
590
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -654,7 +657,7 @@ function generatePackageJson(choices) {
|
|
|
654
657
|
// same reason. This is the ACCEPTED, permanent contract per #2668 — see
|
|
655
658
|
// the "@takazudo/zdtp dep implication" note in
|
|
656
659
|
// packages/zudo-doc/docs/adr/route-injection-seam.md.
|
|
657
|
-
"@takazudo/zdtp": "0.4.
|
|
660
|
+
"@takazudo/zdtp": "0.4.10",
|
|
658
661
|
// (@takazudo/zudo-doc-history-server is NOT here — it is gated on the
|
|
659
662
|
// docHistory feature, see the block below. It was briefly unconditional
|
|
660
663
|
// (#3080) to work around doc-history-area importing its `/exclude` subpath
|
|
@@ -703,7 +706,7 @@ function generatePackageJson(choices) {
|
|
|
703
706
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
704
707
|
// moved compileExclude into @takazudo/zudo-doc, so docHistory-OFF projects
|
|
705
708
|
// no longer need the package at all.
|
|
706
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.
|
|
709
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.3.0";
|
|
707
710
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
708
711
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
709
712
|
// dist/ — package-first migration #2321 (#2337).
|