create-zudo-doc 4.0.0 → 4.1.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 +6 -6
- package/package.json +1 -1
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.
|
|
21
|
+
export declare const ZUDO_DOC_PIN = "^4.1.0";
|
|
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.
|
|
27
|
+
export const ZUDO_DOC_PIN = "^4.1.0";
|
|
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
|
|
@@ -512,12 +512,12 @@ function generatePackageJson(choices) {
|
|
|
512
512
|
// singleton across host-callable wiring (zfb#1652/#1653). The zfb family
|
|
513
513
|
// must stay in lockstep because the WASM browser entry depends on its
|
|
514
514
|
// resource-aware island pipeline.
|
|
515
|
-
"@takazudo/zfb": "0.1.0-next.
|
|
516
|
-
"@takazudo/zfb-runtime": "0.1.0-next.
|
|
515
|
+
"@takazudo/zfb": "0.1.0-next.89",
|
|
516
|
+
"@takazudo/zfb-runtime": "0.1.0-next.89",
|
|
517
517
|
// zfb-adapter-cloudflare — required for any route with `prerender = false`.
|
|
518
518
|
// Pinned in lockstep with @takazudo/zfb.
|
|
519
|
-
"@takazudo/zfb-adapter-cloudflare": "0.1.0-next.
|
|
520
|
-
"@takazudo/zfb-md-wasm": "0.1.0-next.
|
|
519
|
+
"@takazudo/zfb-adapter-cloudflare": "0.1.0-next.89",
|
|
520
|
+
"@takazudo/zfb-md-wasm": "0.1.0-next.89",
|
|
521
521
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
522
522
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
523
523
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -622,7 +622,7 @@ function generatePackageJson(choices) {
|
|
|
622
622
|
// doc-history helpers, which in turn import
|
|
623
623
|
// @takazudo/zudo-doc-history-server/git-history. Without this dep the
|
|
624
624
|
// plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
|
|
625
|
-
deps["@takazudo/zudo-doc-history-server"] = "^4.
|
|
625
|
+
deps["@takazudo/zudo-doc-history-server"] = "^4.1.0";
|
|
626
626
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
627
627
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
628
628
|
// dist/ — package-first migration #2321 (#2337).
|