@goliapkg/gds 1.0.3 → 1.0.4
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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -98,7 +98,7 @@ Anti-corruption wrappers: `cx()` for clsx+tailwind-merge, `VariantProps` for CVA
|
|
|
98
98
|
git clone git@github.com:goliajp/gds.git
|
|
99
99
|
cd gds
|
|
100
100
|
bun install
|
|
101
|
-
bun dev #
|
|
101
|
+
bun dev # website at localhost:5175
|
|
102
102
|
bun test # run vitest
|
|
103
103
|
bun run test:coverage # coverage report (93%+ branches)
|
|
104
104
|
bun run check # test + typecheck + lint
|
|
@@ -129,7 +129,7 @@ GDS is designed to be learned and applied by AI. Key entry points:
|
|
|
129
129
|
| Layer rules | `src/l0-tokens/deps.ts` |
|
|
130
130
|
| Philosophy | `.claude/rules/gds-philosophy.md` |
|
|
131
131
|
| Standards | `.claude/rules/gds-lib.md` |
|
|
132
|
-
| Live demos | `
|
|
132
|
+
| Live demos | `web/src/items/` (150+ demos) |
|
|
133
133
|
|
|
134
134
|
Every component: **CVA variants → typed Props → forwardRef → cx() → focusCls → data-component**. Learn one, apply to all.
|
|
135
135
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goliapkg/gds",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "GOLIA Design System — enterprise-grade UI component library with contextual depth, glass materials, AI-native structure, and 10 design principles",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"*.css"
|
|
88
88
|
],
|
|
89
89
|
"scripts": {
|
|
90
|
-
"dev": "vite --config
|
|
90
|
+
"dev": "vite --config web/vite.config.ts --port 5175",
|
|
91
91
|
"test": "vitest run",
|
|
92
92
|
"test:watch": "vitest",
|
|
93
93
|
"test:coverage": "vitest run --coverage",
|