create-zudo-doc 2.0.0 → 2.0.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.0.0";
14
+ export declare const ZUDO_DOC_PIN = "^2.0.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.0.0";
21
+ export const ZUDO_DOC_PIN = "^2.0.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/`
@@ -479,15 +479,16 @@ function generatePackageJson(choices) {
479
479
  // lockstep with the root package.json pins. No consumer-facing / CLI change.
480
480
  // next.69: routine toolchain bump from next.68, adopted in
481
481
  // lockstep with the root package.json pins. No consumer-facing / CLI change.
482
- // next.70 (current pin): routine toolchain bump from next.69, re-aligned
483
- // with the root package.json pins (root was bumped in b5489acf; this
484
- // scaffold pin lagged at next.69 and broke check-pin-parity). No
485
- // consumer-facing / CLI change.
486
- "@takazudo/zfb": "0.1.0-next.70",
487
- "@takazudo/zfb-runtime": "0.1.0-next.70",
482
+ // next.70: routine toolchain bump from next.69, re-aligned with the root
483
+ // package.json pins (root was bumped in b5489acf; this scaffold pin lagged
484
+ // at next.69 and broke check-pin-parity). No consumer-facing / CLI change.
485
+ // next.71 (current pin): routine toolchain bump from next.70, carrying the
486
+ // zfb external-@import hoisting work. No consumer-facing / CLI change.
487
+ "@takazudo/zfb": "0.1.0-next.71",
488
+ "@takazudo/zfb-runtime": "0.1.0-next.71",
488
489
  // zfb-adapter-cloudflare — required for any route with `prerender = false`.
489
490
  // Pinned in lockstep with @takazudo/zfb.
490
- "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.70",
491
+ "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.71",
491
492
  // @takazudo/zudo-doc — published from this monorepo via
492
493
  // .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
493
494
  // lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
@@ -570,7 +571,7 @@ function generatePackageJson(choices) {
570
571
  // @takazudo/zudo-doc/integrations/doc-history which in turn imports
571
572
  // @takazudo/zudo-doc-history-server/git-history. Without this dep the
572
573
  // plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
573
- deps["@takazudo/zudo-doc-history-server"] = "^2.0.0";
574
+ deps["@takazudo/zudo-doc-history-server"] = "^2.0.1";
574
575
  // tsx is no longer needed here: the relocated package plugin imports the
575
576
  // runner directly (no `tsx -e` spawn) since the package ships compiled
576
577
  // 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.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",
@@ -30,6 +30,7 @@ export type {
30
30
  TagPlacement,
31
31
  VersionConfig,
32
32
  MetaTagsConfig,
33
+ SiteHeadConfig,
33
34
  Settings,
34
35
  } from "@takazudo/zudo-doc/settings";
35
36