create-zudo-doc 0.2.0-next.5 → 0.2.0-next.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 +2 -2
  2. package/package.json +1 -1
package/dist/scaffold.js CHANGED
@@ -267,7 +267,7 @@ function generatePackageJson(choices) {
267
267
  // .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
268
268
  // lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
269
269
  // version moves, so a fresh scaffold pulls the version we just published.
270
- "@takazudo/zudo-doc": "^0.2.0-next.5",
270
+ "@takazudo/zudo-doc": "^0.2.0-next.6",
271
271
  // zod — used by the generated zfb.config.ts. zfb-config-gen emits
272
272
  // `import { z } from "zod"` for the content-collection schema +
273
273
  // `z.toJSONSchema(...)` conversion. Without this dep, the consumer
@@ -325,7 +325,7 @@ function generatePackageJson(choices) {
325
325
  // @takazudo/zudo-doc/integrations/doc-history which in turn imports
326
326
  // @takazudo/zudo-doc-history-server/git-history. Without this dep the
327
327
  // plugin host fails at init with ERR_MODULE_NOT_FOUND — W8A (#1739).
328
- deps["@takazudo/zudo-doc-history-server"] = "^0.2.0-next.5";
328
+ deps["@takazudo/zudo-doc-history-server"] = "^0.2.0-next.6";
329
329
  // W7A (#1736): doc-history-plugin.mjs spawns `tsx -e <inline-script>` to
330
330
  // run the v2 runtime in a TS-aware Node subprocess; without tsx the
331
331
  // 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.0-next.5",
3
+ "version": "0.2.0-next.6",
4
4
  "description": "Create a new zudo-doc documentation site",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",