create-zudo-doc 0.2.0-next.8 → 0.2.0

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