create-zudo-doc 4.4.5 → 4.4.7
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/claude-md-gen.js +9 -1
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +5 -5
- package/package.json +1 -1
package/dist/claude-md-gen.js
CHANGED
|
@@ -77,7 +77,15 @@ export function generateCLAUDEFile(choices) {
|
|
|
77
77
|
lines.push(``);
|
|
78
78
|
lines.push(`### Admonitions`);
|
|
79
79
|
lines.push(``);
|
|
80
|
-
lines.push(`Available in all MDX files without imports, via directive syntax: \`:::note\`, \`:::tip\`, \`:::info\`, \`:::warning\`, \`:::danger\`, \`:::caution\`, \`:::details\`. Each accepts an optional
|
|
80
|
+
lines.push(`Available in all MDX files without imports, via directive syntax: \`:::note\`, \`:::tip\`, \`:::info\`, \`:::warning\`, \`:::danger\`, \`:::caution\`, \`:::details\`. Each accepts an optional **bracketed** title: \`:::note[Custom Title]\`.`);
|
|
81
|
+
lines.push(``);
|
|
82
|
+
// Agents trained on Docusaurus reach for `{title="..."}` by default, and that
|
|
83
|
+
// form fails in a way the error message does not point back at: MDX parses the
|
|
84
|
+
// braces as a JS expression, so the build dies with `ReferenceError: title is
|
|
85
|
+
// not defined` (or, when the fence has blank lines around it, the title is
|
|
86
|
+
// silently dropped). Stating the negative explicitly is the whole point of this
|
|
87
|
+
// paragraph — see zudolab/zudo-doc#3104.
|
|
88
|
+
lines.push(`Docusaurus-style \`{title="..."}\` is **NOT supported**. MDX parses the braces as a JS expression, so it either fails the build with \`ReferenceError: title is not defined\` or is silently ignored. Always use the bracketed form.`);
|
|
81
89
|
lines.push(``);
|
|
82
90
|
lines.push(`### Headings`);
|
|
83
91
|
lines.push(``);
|
package/dist/scaffold.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ export { getSecondaryLang };
|
|
|
18
18
|
*
|
|
19
19
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
20
20
|
*/
|
|
21
|
-
export declare const ZUDO_DOC_PIN = "^4.4.
|
|
21
|
+
export declare const ZUDO_DOC_PIN = "^4.4.7";
|
|
22
22
|
export declare function scaffold(choices: UserChoices): Promise<void>;
|
package/dist/scaffold.js
CHANGED
|
@@ -24,7 +24,7 @@ export { getSecondaryLang };
|
|
|
24
24
|
*
|
|
25
25
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
26
26
|
*/
|
|
27
|
-
export const ZUDO_DOC_PIN = "^4.4.
|
|
27
|
+
export const ZUDO_DOC_PIN = "^4.4.7";
|
|
28
28
|
/**
|
|
29
29
|
* Files in `templates/base/**` that must not be copied by the unconditional
|
|
30
30
|
* base mirror. Each entry is matched against the path relative to
|
|
@@ -550,9 +550,9 @@ function generatePackageJson(choices) {
|
|
|
550
550
|
// singleton across host-callable wiring (zfb#1652/#1653). The zfb family
|
|
551
551
|
// must stay in lockstep because the WASM browser entry depends on its
|
|
552
552
|
// resource-aware island pipeline.
|
|
553
|
-
"@takazudo/zfb": "0.1.0-next.
|
|
554
|
-
"@takazudo/zfb-runtime": "0.1.0-next.
|
|
555
|
-
"@takazudo/zfb-md-wasm": "0.1.0-next.
|
|
553
|
+
"@takazudo/zfb": "0.1.0-next.96",
|
|
554
|
+
"@takazudo/zfb-runtime": "0.1.0-next.96",
|
|
555
|
+
"@takazudo/zfb-md-wasm": "0.1.0-next.96",
|
|
556
556
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
557
557
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
558
558
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -646,7 +646,7 @@ function generatePackageJson(choices) {
|
|
|
646
646
|
// version (parity-guarded — INTERNAL_PINNED_PACKAGES in
|
|
647
647
|
// scripts/check-pin-parity.mjs). docHistory-ON projects additionally need
|
|
648
648
|
// npm-run-all2 for the two-process dev script — see the docHistory block below.
|
|
649
|
-
"@takazudo/zudo-doc-history-server": "^4.4.
|
|
649
|
+
"@takazudo/zudo-doc-history-server": "^4.4.7",
|
|
650
650
|
};
|
|
651
651
|
const devDeps = {
|
|
652
652
|
"@tailwindcss/vite": "^4.2.0",
|