create-zudo-doc 4.4.4 → 4.4.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.
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +30 -14
- package/package.json +1 -1
package/dist/scaffold.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ export { getSecondaryLang };
|
|
|
18
18
|
*
|
|
19
19
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
20
20
|
*/
|
|
21
|
-
export declare const ZUDO_DOC_PIN = "^4.4.
|
|
21
|
+
export declare const ZUDO_DOC_PIN = "^4.4.6";
|
|
22
22
|
export declare function scaffold(choices: UserChoices): Promise<void>;
|
package/dist/scaffold.js
CHANGED
|
@@ -24,7 +24,7 @@ export { getSecondaryLang };
|
|
|
24
24
|
*
|
|
25
25
|
* Bumped in lockstep by scripts/release-create-zudo-doc.sh.
|
|
26
26
|
*/
|
|
27
|
-
export const ZUDO_DOC_PIN = "^4.4.
|
|
27
|
+
export const ZUDO_DOC_PIN = "^4.4.6";
|
|
28
28
|
/**
|
|
29
29
|
* Files in `templates/base/**` that must not be copied by the unconditional
|
|
30
30
|
* base mirror. Each entry is matched against the path relative to
|
|
@@ -550,9 +550,9 @@ function generatePackageJson(choices) {
|
|
|
550
550
|
// singleton across host-callable wiring (zfb#1652/#1653). The zfb family
|
|
551
551
|
// must stay in lockstep because the WASM browser entry depends on its
|
|
552
552
|
// resource-aware island pipeline.
|
|
553
|
-
"@takazudo/zfb": "0.1.0-next.
|
|
554
|
-
"@takazudo/zfb-runtime": "0.1.0-next.
|
|
555
|
-
"@takazudo/zfb-md-wasm": "0.1.0-next.
|
|
553
|
+
"@takazudo/zfb": "0.1.0-next.96",
|
|
554
|
+
"@takazudo/zfb-runtime": "0.1.0-next.96",
|
|
555
|
+
"@takazudo/zfb-md-wasm": "0.1.0-next.96",
|
|
556
556
|
// @takazudo/zudo-doc — published from this monorepo via
|
|
557
557
|
// .github/workflows/publish-zudo-doc.yml. The pin here is bumped in
|
|
558
558
|
// lockstep by scripts/release-create-zudo-doc.sh whenever zudo-doc's
|
|
@@ -630,6 +630,23 @@ function generatePackageJson(choices) {
|
|
|
630
630
|
// the "@takazudo/zdtp dep implication" note in
|
|
631
631
|
// packages/zudo-doc/docs/adr/route-injection-seam.md.
|
|
632
632
|
"@takazudo/zdtp": "0.4.9",
|
|
633
|
+
// @takazudo/zudo-doc-history-server — SAME "unconditional at build time
|
|
634
|
+
// despite being an optional peer" class as `diff` (#2342) and
|
|
635
|
+
// `@takazudo/zdtp` (#2668) above. `@takazudo/zudo-doc/dist/doc-history-area/
|
|
636
|
+
// index.js` imports `@takazudo/zudo-doc-history-server/exclude`
|
|
637
|
+
// (compileExclude) at MODULE scope, and packageOwnedRoutes always bundles
|
|
638
|
+
// the doc-history-area path — so every project pulls this import into the
|
|
639
|
+
// esbuild graph, `docHistory` setting or not; only history RENDERING is
|
|
640
|
+
// gated on the setting, not the import. Without this dep a docHistory-OFF
|
|
641
|
+
// scaffold fails `zfb build` with "Could not resolve
|
|
642
|
+
// '@takazudo/zudo-doc-history-server/exclude'" (#3080). It IS an optional
|
|
643
|
+
// peerDependency of @takazudo/zudo-doc (^4.4.3), but pnpm does not
|
|
644
|
+
// auto-install peers, so a missing copy produces no install warning and
|
|
645
|
+
// shipped silently until build time. The pin stays lockstep with the root
|
|
646
|
+
// version (parity-guarded — INTERNAL_PINNED_PACKAGES in
|
|
647
|
+
// scripts/check-pin-parity.mjs). docHistory-ON projects additionally need
|
|
648
|
+
// npm-run-all2 for the two-process dev script — see the docHistory block below.
|
|
649
|
+
"@takazudo/zudo-doc-history-server": "^4.4.6",
|
|
633
650
|
};
|
|
634
651
|
const devDeps = {
|
|
635
652
|
"@tailwindcss/vite": "^4.2.0",
|
|
@@ -645,16 +662,15 @@ function generatePackageJson(choices) {
|
|
|
645
662
|
devDeps["pagefind"] = "^1.4.0";
|
|
646
663
|
}
|
|
647
664
|
if (choices.features.includes("docHistory")) {
|
|
648
|
-
// (diff
|
|
649
|
-
//
|
|
650
|
-
//
|
|
651
|
-
//
|
|
652
|
-
//
|
|
653
|
-
// (@takazudo/zudo-doc/plugins/doc-history)
|
|
654
|
-
// doc-history
|
|
655
|
-
//
|
|
656
|
-
//
|
|
657
|
-
deps["@takazudo/zudo-doc-history-server"] = "^4.4.4";
|
|
665
|
+
// (Both `diff` AND `@takazudo/zudo-doc-history-server` are now unconditional
|
|
666
|
+
// base deps — see the `deps` block above: packageOwnedRoutes always bundles
|
|
667
|
+
// the doc-history-area path, whose module-scope imports pull both in
|
|
668
|
+
// regardless of this feature flag. #2342 / #3080.)
|
|
669
|
+
// When docHistory is selected the zfb plugin
|
|
670
|
+
// (@takazudo/zudo-doc/plugins/doc-history) additionally, at plugin-init time,
|
|
671
|
+
// eagerly imports @takazudo/zudo-doc-history-server/git-history — the same
|
|
672
|
+
// dep, so it is already satisfied by the unconditional entry (was W8A #1739,
|
|
673
|
+
// when the dep was still gated here).
|
|
658
674
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
659
675
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
660
676
|
// dist/ — package-first migration #2321 (#2337).
|