create-zudo-doc 5.10.0 → 5.12.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/CHANGELOG.md +10 -0
- package/dist/scaffold.d.ts +1 -1
- package/dist/scaffold.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,3 +3,13 @@
|
|
|
3
3
|
All notable changes to `create-zudo-doc` are documented in this file.
|
|
4
4
|
|
|
5
5
|
The format is based on Keep a Changelog, and release notes are generated from the changelog MDX pages.
|
|
6
|
+
|
|
7
|
+
## [5.12.0] - 2026-08-23
|
|
8
|
+
|
|
9
|
+
- No package-specific changes.
|
|
10
|
+
|
|
11
|
+
## [5.11.0] - 2026-08-23
|
|
12
|
+
|
|
13
|
+
### Other Changes
|
|
14
|
+
|
|
15
|
+
- Updated newly generated projects to use the zfb 2.10.0 package family and the 5.11.0 zudo-doc package family. (`acaa01cf`)
|
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.12.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.12.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
|
|
@@ -826,7 +826,7 @@ function generatePackageJson(choices) {
|
|
|
826
826
|
// `/exclude` at module scope from the always-bundled chrome graph; #3110
|
|
827
827
|
// moved compileExclude into @takazudo/zudo-doc, so docHistory-OFF projects
|
|
828
828
|
// no longer need the package at all.
|
|
829
|
-
deps["@takazudo/zudo-doc-history-server"] = "^5.
|
|
829
|
+
deps["@takazudo/zudo-doc-history-server"] = "^5.12.0";
|
|
830
830
|
// tsx is no longer needed here: the relocated package plugin imports the
|
|
831
831
|
// runner directly (no `tsx -e` spawn) since the package ships compiled
|
|
832
832
|
// dist/ — package-first migration #2321 (#2337).
|