create-zudo-sg 0.1.4 → 0.1.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/CHANGELOG.md CHANGED
@@ -4,6 +4,31 @@ All notable changes to `create-zudo-sg` are documented in this file.
4
4
 
5
5
  The format is based on Keep a Changelog.
6
6
 
7
+ ## [0.1.6] - 2026-09-24
8
+
9
+ ### Changed
10
+
11
+ - Update the starter's zfb, zudo-doc, and zdtp versions, and its engine range
12
+ to `@takazudo/zudo-sg ^0.3.4`.
13
+ - Update the GitHub Actions dependencies used by the initializer publish
14
+ workflow.
15
+
16
+ ### Fixed
17
+
18
+ - Ignore `.zudo-doc/` build output in newly scaffolded projects.
19
+
20
+ ## [0.1.5] - 2026-09-23
21
+
22
+ ### Changed
23
+
24
+ - Support optional host token-group metadata in the starter preview panel,
25
+ while retaining type compatibility with legacy five-array manifests.
26
+ - Update the starter engine range to `@takazudo/zudo-sg ^0.3.2`, which supports
27
+ host-defined token vocabularies, portable component scaffolds, and unique
28
+ registry import bindings.
29
+ - Verify flat and nested generated components in the packed starter proof,
30
+ including typechecking and built routes.
31
+
7
32
  ## [0.1.4] - 2026-09-21
8
33
 
9
34
  Gives a fresh starter a working preview token panel, not just the button that
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zudo-sg",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Create a new zudo-sg styleguide project",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",
@@ -2,6 +2,8 @@ node_modules
2
2
  dist
3
3
  .zfb-build
4
4
  .zfb/
5
+ # zudo-doc copies installed package-owned route sources here during builds.
6
+ .zudo-doc/
5
7
  .zfb-esbuild-entry-*.tsx
6
8
  .zfb-islands-tsconfig-*.json
7
9
  .zfb-virtual-*.mjs
@@ -12,12 +12,12 @@
12
12
  "gen-token-manifest": "zudo-sg gen-token-manifest"
13
13
  },
14
14
  "dependencies": {
15
- "@takazudo/zdtp": "0.8.0",
16
- "@takazudo/zfb": "2.20.0",
17
- "@takazudo/zfb-md-wasm": "2.20.0",
18
- "@takazudo/zfb-runtime": "2.20.0",
19
- "@takazudo/zudo-doc": "5.26.2",
20
- "@takazudo/zudo-sg": "^0.3.1",
15
+ "@takazudo/zdtp": "0.8.2",
16
+ "@takazudo/zfb": "2.20.2",
17
+ "@takazudo/zfb-md-wasm": "2.20.2",
18
+ "@takazudo/zfb-runtime": "2.20.2",
19
+ "@takazudo/zudo-doc": "5.27.0",
20
+ "@takazudo/zudo-sg": "^0.3.4",
21
21
  "diff": "^8.0.4",
22
22
  "katex": "^0.16.38",
23
23
  "preact": "^10.29.1",
@@ -2,14 +2,14 @@ packages: []
2
2
  allowBuilds:
3
3
  esbuild: true
4
4
  minimumReleaseAgeExclude:
5
- - "@takazudo/zdtp@0.8.0"
6
- - "@takazudo/zfb-darwin-arm64@2.20.0"
7
- - "@takazudo/zfb-darwin-x64@2.20.0"
8
- - "@takazudo/zfb-linux-arm64-gnu@2.20.0"
9
- - "@takazudo/zfb-linux-x64-gnu@2.20.0"
10
- - "@takazudo/zfb-md-wasm@2.20.0"
11
- - "@takazudo/zfb-runtime@2.20.0"
12
- - "@takazudo/zfb-win32-x64-msvc@2.20.0"
13
- - "@takazudo/zfb@2.20.0"
14
- - "@takazudo/zudo-doc@5.26.2"
15
- - "@takazudo/zudo-sg@0.3.1"
5
+ - "@takazudo/zdtp@0.8.2"
6
+ - "@takazudo/zfb-darwin-arm64@2.20.2"
7
+ - "@takazudo/zfb-darwin-x64@2.20.2"
8
+ - "@takazudo/zfb-linux-arm64-gnu@2.20.2"
9
+ - "@takazudo/zfb-linux-x64-gnu@2.20.2"
10
+ - "@takazudo/zfb-md-wasm@2.20.2"
11
+ - "@takazudo/zfb-runtime@2.20.2"
12
+ - "@takazudo/zfb-win32-x64-msvc@2.20.2"
13
+ - "@takazudo/zfb@2.20.2"
14
+ - "@takazudo/zudo-doc@5.27.0"
15
+ - "@takazudo/zudo-sg@0.3.4"
@@ -6,20 +6,19 @@
6
6
  // preview-token-panel-bootstrap.tsx).
7
7
  import { buildUiTokenTabs } from "@takazudo/zudo-sg/token-dashboard";
8
8
  import type { UiDesignTokensManifest } from "@takazudo/zudo-sg/token-dashboard";
9
- import {
10
- UI_PALETTE_COLORS,
11
- UI_COLOR_TOKENS,
12
- UI_SPACING_TOKENS,
13
- UI_FONT_TOKENS,
14
- UI_SIZE_TOKENS,
15
- } from "../styleguide/token-manifest.ts";
9
+ import * as tokens from "../styleguide/token-manifest.ts";
10
+
11
+ const tokenGroups = tokens as typeof tokens & {
12
+ UI_TOKEN_GROUPS?: UiDesignTokensManifest["groups"];
13
+ };
16
14
 
17
15
  const uiDesignTokensManifest: UiDesignTokensManifest = {
18
- paletteColors: UI_PALETTE_COLORS,
19
- colorTokens: UI_COLOR_TOKENS,
20
- spacingTokens: UI_SPACING_TOKENS,
21
- fontTokens: UI_FONT_TOKENS,
22
- sizeTokens: UI_SIZE_TOKENS,
16
+ paletteColors: tokens.UI_PALETTE_COLORS,
17
+ colorTokens: tokens.UI_COLOR_TOKENS,
18
+ spacingTokens: tokens.UI_SPACING_TOKENS,
19
+ fontTokens: tokens.UI_FONT_TOKENS,
20
+ sizeTokens: tokens.UI_SIZE_TOKENS,
21
+ groups: tokenGroups.UI_TOKEN_GROUPS,
23
22
  };
24
23
 
25
24
  export const tabs = buildUiTokenTabs(uiDesignTokensManifest);