create-zudo-doc 2.4.0 → 2.4.1

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.
@@ -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.4.0";
14
+ export declare const ZUDO_DOC_PIN = "^2.4.1";
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.4.0";
21
+ export const ZUDO_DOC_PIN = "^2.4.1";
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/`
@@ -489,15 +489,17 @@ function generatePackageJson(choices) {
489
489
  // next.74: routine toolchain bump from next.72 (next.73
490
490
  // skipped), adopted in lockstep with the root package.json pins. No
491
491
  // consumer-facing / CLI change.
492
- // next.75 (current pin): toolchain bump from next.74 restoring Tailwind
492
+ // next.75: toolchain bump from next.74 restoring Tailwind
493
493
  // class-candidate scanning through symlinked project trees
494
494
  // (zudolab/zudo-doc#2511), adopted in lockstep with the root package.json
495
495
  // pins. No consumer-facing / CLI change.
496
- "@takazudo/zfb": "0.1.0-next.75",
497
- "@takazudo/zfb-runtime": "0.1.0-next.75",
496
+ // next.76 (current pin): routine toolchain bump from next.75, adopted in
497
+ // lockstep with the root package.json pins. No consumer-facing / CLI change.
498
+ "@takazudo/zfb": "0.1.0-next.76",
499
+ "@takazudo/zfb-runtime": "0.1.0-next.76",
498
500
  // zfb-adapter-cloudflare — required for any route with `prerender = false`.
499
501
  // Pinned in lockstep with @takazudo/zfb.
500
- "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.75",
502
+ "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.76",
501
503
  // @takazudo/zudo-doc — published from this monorepo via
502
504
  // .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
503
505
  // lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
@@ -580,7 +582,7 @@ function generatePackageJson(choices) {
580
582
  // @takazudo/zudo-doc/integrations/doc-history which in turn imports
581
583
  // @takazudo/zudo-doc-history-server/git-history. Without this dep the
582
584
  // plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
583
- deps["@takazudo/zudo-doc-history-server"] = "^2.4.0";
585
+ deps["@takazudo/zudo-doc-history-server"] = "^2.4.1";
584
586
  // tsx is no longer needed here: the relocated package plugin imports the
585
587
  // runner directly (no `tsx -e` spawn) since the package ships compiled
586
588
  // dist/ — package-first migration #2321 (#2337).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zudo-doc",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",