create-zudo-doc 2.1.1 → 2.1.2
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 +8 -6
- package/package.json +1 -1
package/dist/scaffold.d.ts
CHANGED
|
@@ -11,5 +11,5 @@ export { getSecondaryLang };
|
|
|
11
11
|
*
|
|
12
12
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
13
13
|
*/
|
|
14
|
-
export declare const ZUDO_DOC_PIN = "^2.1.
|
|
14
|
+
export declare const ZUDO_DOC_PIN = "^2.1.2";
|
|
15
15
|
export declare function scaffold(choices: UserChoices): Promise<void>;
|
package/dist/scaffold.js
CHANGED
|
@@ -18,7 +18,7 @@ export { getSecondaryLang };
|
|
|
18
18
|
*
|
|
19
19
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
20
20
|
*/
|
|
21
|
-
export const ZUDO_DOC_PIN = "^2.1.
|
|
21
|
+
export const ZUDO_DOC_PIN = "^2.1.2";
|
|
22
22
|
/**
|
|
23
23
|
* Files in `templates/base/**` that must never be copied into a generated
|
|
24
24
|
* project. Each entry is matched against the path relative to `templates/base/`
|
|
@@ -482,13 +482,15 @@ function generatePackageJson(choices) {
|
|
|
482
482
|
// next.70: routine toolchain bump from next.69, re-aligned with the root
|
|
483
483
|
// package.json pins (root was bumped in b5489acf; this scaffold pin lagged
|
|
484
484
|
// at next.69 and broke check-pin-parity). No consumer-facing / CLI change.
|
|
485
|
-
// next.71
|
|
485
|
+
// next.71: routine toolchain bump from next.70, carrying the
|
|
486
486
|
// zfb external-@import hoisting work. No consumer-facing / CLI change.
|
|
487
|
-
|
|
488
|
-
|
|
487
|
+
// next.72 (current pin): routine toolchain bump from next.71, adopted in
|
|
488
|
+
// lockstep with the root package.json pins. No consumer-facing / CLI change.
|
|
489
|
+
"@takazudo/zfb": "0.1.0-next.72",
|
|
490
|
+
"@takazudo/zfb-runtime": "0.1.0-next.72",
|
|
489
491
|
// zfb-adapter-cloudflare — required for any route with `prerender = false`.
|
|
490
492
|
// Pinned in lockstep with @takazudo/zfb.
|
|
491
|
-
"@takazudo/zfb-adapter-cloudflare": "0.1.0-next.
|
|
493
|
+
"@takazudo/zfb-adapter-cloudflare": "0.1.0-next.72",
|
|
492
494
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
493
495
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
494
496
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -571,7 +573,7 @@ function generatePackageJson(choices) {
|
|
|
571
573
|
// @takazudo/zudo-doc/integrations/doc-history which in turn imports
|
|
572
574
|
// @takazudo/zudo-doc-history-server/git-history. Without this dep the
|
|
573
575
|
// plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
|
|
574
|
-
deps["@takazudo/zudo-doc-history-server"] = "^2.1.
|
|
576
|
+
deps["@takazudo/zudo-doc-history-server"] = "^2.1.2";
|
|
575
577
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
576
578
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
577
579
|
// dist/ — package-first migration #2321 (#2337).
|