create-zudo-doc 5.5.3 → 5.7.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.
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +12 -6
- package/package.json +3 -2
package/dist/scaffold.d.ts
CHANGED
|
@@ -32,5 +32,5 @@ export declare function deriveDocSkillName(projectName: string): string;
|
|
|
32
32
|
*
|
|
33
33
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
34
34
|
*/
|
|
35
|
-
export declare const ZUDO_DOC_PIN = "^5.
|
|
35
|
+
export declare const ZUDO_DOC_PIN = "^5.7.0";
|
|
36
36
|
export declare function scaffold(choices: UserChoices): Promise<void>;
|
package/dist/scaffold.js
CHANGED
|
@@ -43,7 +43,7 @@ export function deriveDocSkillName(projectName) {
|
|
|
43
43
|
*
|
|
44
44
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
45
45
|
*/
|
|
46
|
-
export const ZUDO_DOC_PIN = "^5.
|
|
46
|
+
export const ZUDO_DOC_PIN = "^5.7.0";
|
|
47
47
|
/**
|
|
48
48
|
* Files in `templates/base/**` that must not be copied by the unconditional
|
|
49
49
|
* base mirror. Each entry is matched against the path relative to
|
|
@@ -618,9 +618,15 @@ function generatePackageJson(choices) {
|
|
|
618
618
|
// opener paragraph's fence state carries into the sibling scan, and
|
|
619
619
|
// reconstruct_jsx stops swallowing nested Break nodes. No generator-side
|
|
620
620
|
// migration.
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
621
|
+
// 2.6.0: adds render-artifact export plumbing (emitRenderArtifacts
|
|
622
|
+
// config/CLI flag, region identity + raw-source digest + headings
|
|
623
|
+
// metadata, render-artifact sentinel wrap/extract/strip) — flag-off by
|
|
624
|
+
// default, so a fresh scaffold needs no config change to pick it up.
|
|
625
|
+
// Also fixes the client router to tolerate about:srcdoc history
|
|
626
|
+
// restrictions. No generator-side migration.
|
|
627
|
+
"@takazudo/zfb": "2.7.1",
|
|
628
|
+
"@takazudo/zfb-runtime": "2.7.1",
|
|
629
|
+
"@takazudo/zfb-md-wasm": "2.7.1",
|
|
624
630
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
625
631
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
626
632
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -693,7 +699,7 @@ function generatePackageJson(choices) {
|
|
|
693
699
|
// same reason. This is the ACCEPTED, permanent contract per #2668 — see
|
|
694
700
|
// the "@takazudo/zdtp dep implication" note in
|
|
695
701
|
// packages/zudo-doc/docs/adr/route-injection-seam.md.
|
|
696
|
-
"@takazudo/zdtp": "0.4.
|
|
702
|
+
"@takazudo/zdtp": "0.4.11",
|
|
697
703
|
// (@takazudo/zudo-doc-history-server is NOT here — it is gated on the
|
|
698
704
|
// docHistory feature, see the block below. It was briefly unconditional
|
|
699
705
|
// (#3080) to work around doc-history-area importing its `/exclude` subpath
|
|
@@ -742,7 +748,7 @@ function generatePackageJson(choices) {
|
|
|
742
748
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
743
749
|
// moved compileExclude into @takazudo/zudo-doc, so docHistory-OFF projects
|
|
744
750
|
// no longer need the package at all.
|
|
745
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.
|
|
751
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.7.0";
|
|
746
752
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
747
753
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
748
754
|
// dist/ — package-first migration #2321 (#2337).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-zudo-doc",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.7.0",
|
|
4
4
|
"description": "Create a new zudo-doc documentation site",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Takeshi Takatsudo",
|
|
@@ -49,7 +49,8 @@
|
|
|
49
49
|
"typecheck": "tsc --noEmit",
|
|
50
50
|
"test": "vitest run",
|
|
51
51
|
"test:slow": "vitest run --config vitest.slow.config.ts",
|
|
52
|
-
"
|
|
52
|
+
"check:publish-contract": "pnpm build && pnpm test",
|
|
53
|
+
"prepublishOnly": "pnpm check:publish-contract"
|
|
53
54
|
},
|
|
54
55
|
"dependencies": {
|
|
55
56
|
"@clack/prompts": "^0.9.1",
|