create-zudo-doc 5.5.2 → 5.5.3
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 +10 -5
- 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.5.
|
|
35
|
+
export declare const ZUDO_DOC_PIN = "^5.5.3";
|
|
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.5.
|
|
46
|
+
export const ZUDO_DOC_PIN = "^5.5.3";
|
|
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
|
|
@@ -613,9 +613,14 @@ function generatePackageJson(choices) {
|
|
|
613
613
|
// visible text rather than the URL alone (and spares footnote bodies and
|
|
614
614
|
// nested link labels), plus CJK-friendly emphasis/hard-break and math
|
|
615
615
|
// handling at the secondary parse sites. No generator-side migration.
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
616
|
+
// 2.5.2: bugfix only — blank-line-separated container directives now nest,
|
|
617
|
+
// collapsed-run recognition is gated/tolerant of the split shape, the
|
|
618
|
+
// opener paragraph's fence state carries into the sibling scan, and
|
|
619
|
+
// reconstruct_jsx stops swallowing nested Break nodes. No generator-side
|
|
620
|
+
// migration.
|
|
621
|
+
"@takazudo/zfb": "2.5.2",
|
|
622
|
+
"@takazudo/zfb-runtime": "2.5.2",
|
|
623
|
+
"@takazudo/zfb-md-wasm": "2.5.2",
|
|
619
624
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
620
625
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
621
626
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -737,7 +742,7 @@ function generatePackageJson(choices) {
|
|
|
737
742
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
738
743
|
// moved compileExclude into @takazudo/zudo-doc, so docHistory-OFF projects
|
|
739
744
|
// no longer need the package at all.
|
|
740
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.5.
|
|
745
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.5.3";
|
|
741
746
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
742
747
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
743
748
|
// dist/ — package-first migration #2321 (#2337).
|