create-zudo-doc 5.4.0 → 5.5.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 +16 -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.
|
|
35
|
+
export declare const ZUDO_DOC_PIN = "^5.5.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.5.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
|
|
@@ -598,9 +598,20 @@ function generatePackageJson(choices) {
|
|
|
598
598
|
// 2.3.0/2.3.1: additive + bugfix only (desktop TOC collapse toggle,
|
|
599
599
|
// markdown fragment validation fixes, dev-server CSS rebuild loop fix).
|
|
600
600
|
// No generator-side migration.
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
601
|
+
// 2.4.0: additive + bugfix only (plugin log envelopes rendered on the
|
|
602
|
+
// terminal, stale plugin bundle temp-file sweeping, an SSR request-param
|
|
603
|
+
// detector wired into dev/build/check, and a wrangler minimum-version gate
|
|
604
|
+
// in `zfb preview` replacing the old exact-equality check). A fresh
|
|
605
|
+
// scaffold ships no plugins and no SSR routes, so there is no
|
|
606
|
+
// generator-side migration.
|
|
607
|
+
// 2.5.0: `markdown.gfm`'s conservative default now also includes
|
|
608
|
+
// `autolinkLiteral`, so bare URLs in markdown render as links without
|
|
609
|
+
// config. Behavioral, but purely additive for authors; a partial `gfm`
|
|
610
|
+
// object still inherits the default for keys it does not name, so the
|
|
611
|
+
// preset's `{ taskListItem, footnoteDefinition }` picks it up for free.
|
|
612
|
+
"@takazudo/zfb": "2.5.0",
|
|
613
|
+
"@takazudo/zfb-runtime": "2.5.0",
|
|
614
|
+
"@takazudo/zfb-md-wasm": "2.5.0",
|
|
604
615
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
605
616
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
606
617
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -722,7 +733,7 @@ function generatePackageJson(choices) {
|
|
|
722
733
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
723
734
|
// moved compileExclude into @takazudo/zudo-doc, so docHistory-OFF projects
|
|
724
735
|
// no longer need the package at all.
|
|
725
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.
|
|
736
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.5.0";
|
|
726
737
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
727
738
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
728
739
|
// dist/ — package-first migration #2321 (#2337).
|