@zvk/graphs 0.1.2 → 0.1.3
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 +7 -0
- package/README.md +4 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @zvk/graphs Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.3](https://github.com/brandon-schabel/zvk/compare/graphs-v0.1.2...graphs-v0.1.3) (2026-06-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* improve package release workflow and repo maintainability ([#22](https://github.com/brandon-schabel/zvk/issues/22)) ([a41cb66](https://github.com/brandon-schabel/zvk/commit/a41cb66554496f241c5a8e30b29a76c8b8ca92b3))
|
|
9
|
+
|
|
3
10
|
## [0.1.2](https://github.com/brandon-schabel/zvk/compare/graphs-v0.1.1...graphs-v0.1.2) (2026-06-19)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -456,3 +456,7 @@ after export validation.
|
|
|
456
456
|
`bun run --filter @zvk/graphs verify:style-contract` checks the positive style
|
|
457
457
|
surface: graph layers, public `.zvk-graphs*` selectors, graph token definitions,
|
|
458
458
|
UI-token inheritance, state selectors, and forced-colors coverage.
|
|
459
|
+
|
|
460
|
+
## Repo Skill
|
|
461
|
+
|
|
462
|
+
Use `.codex/skills/use-zvk-graphs/SKILL.md` when maintaining this package.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zvk/graphs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Accessible SVG-first node and edge graph utilities, deterministic layouts, and static React renderers for ZVK applications.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"test": "vitest run",
|
|
71
71
|
"test:ssr": "vitest run tests/ssr --environment node",
|
|
72
72
|
"test:exports": "vitest run tests/exports --environment node",
|
|
73
|
+
"test:docs-examples": "bun run build && vitest run tests/docs-examples --environment node",
|
|
73
74
|
"test:types": "tsd",
|
|
74
75
|
"validate:exports": "bun run scripts/validate-exports.mjs",
|
|
75
76
|
"validate:source-policy": "bun run scripts/validate-source-policy.mjs",
|