create-zudo-doc 0.2.5 → 0.2.6

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.
Files changed (2) hide show
  1. package/dist/scaffold.js +10 -6
  2. package/package.json +1 -1
package/dist/scaffold.js CHANGED
@@ -277,7 +277,7 @@ function generatePackageJson(choices) {
277
277
  // pages render on first request instead of on every file-change tick
278
278
  // (Takazudo/zudo-front-builder#1029); `ZFB_DEV_EAGER=1` restores eager
279
279
  // mode. Dev-server-only change, no build/config migration needed.
280
- // next.41 (current pin) adds a URL-space fallback in resolve_links —
280
+ // next.41 adds a URL-space fallback in resolve_links —
281
281
  // dir-style hrefs written from non-index pages now resolve against the
282
282
  // page's URL directory when the file-space lookup misses
283
283
  // (Takazudo/zudo-front-builder#1030) — and the data-file skip warning
@@ -285,16 +285,20 @@ function generatePackageJson(choices) {
285
285
  // include/exclude globs (#1032). No consumer-facing breaking change.
286
286
  // next.42/next.43: release-tooling + formatter-glob fixes only (npm-publish
287
287
  // idempotency, gitignored-artifact excludes). No consumer-facing change.
288
- "@takazudo/zfb": "0.1.0-next.43",
289
- "@takazudo/zfb-runtime": "0.1.0-next.43",
288
+ // next.44 (current pin): embed-as-library enhancements only — ServerBuilder
289
+ // ::with_page_cache for live content, an opt-in ExternalInvalidationHook to
290
+ // narrow extraWatchPaths rebuilds, and TS-config-loader path canonicalization
291
+ // (Takazudo/zudo-front-builder#1036–#1043). No consumer-facing / CLI change.
292
+ "@takazudo/zfb": "0.1.0-next.44",
293
+ "@takazudo/zfb-runtime": "0.1.0-next.44",
290
294
  // zfb-adapter-cloudflare — required for any route with `prerender = false`.
291
295
  // Pinned in lockstep with @takazudo/zfb.
292
- "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.43",
296
+ "@takazudo/zfb-adapter-cloudflare": "0.1.0-next.44",
293
297
  // @takazudo/zudo-doc — published from this monorepo via
294
298
  // .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
295
299
  // lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
296
300
  // version moves, so a fresh scaffold pulls the version we just published.
297
- "@takazudo/zudo-doc": "^0.2.5",
301
+ "@takazudo/zudo-doc": "^0.2.6",
298
302
  // zod — used by the generated zfb.config.ts. zfb-config-gen emits
299
303
  // `import { z } from "zod"` for the content-collection schema +
300
304
  // `z.toJSONSchema(...)` conversion. Without this dep, the consumer
@@ -348,7 +352,7 @@ function generatePackageJson(choices) {
348
352
  // @takazudo/zudo-doc/integrations/doc-history which in turn imports
349
353
  // @takazudo/zudo-doc-history-server/git-history. Without this dep the
350
354
  // plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
351
- deps["@takazudo/zudo-doc-history-server"] = "^0.2.5";
355
+ deps["@takazudo/zudo-doc-history-server"] = "^0.2.6";
352
356
  // W7A (#1736): doc-history-plugin.mjs spawns `tsx -e <inline-script>` to
353
357
  // run the v2 runtime in a TS-aware Node subprocess; without tsx the
354
358
  // plugin's preBuild step exits with ENOENT before zfb finishes config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zudo-doc",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",