@grantcodes/ui 2.1.0 → 2.1.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +19 -19
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.1](https://github.com/grantcodes/ui/compare/ui-v2.1.0...ui-v2.1.1) (2026-03-15)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ui:** pnpm build issues ([9dae345](https://github.com/grantcodes/ui/commit/9dae345ea55d3ba8b674e16c989cf3d807381993))
9
+ * **ui:** replace workspace protocol for published dependency ([fd1fbc3](https://github.com/grantcodes/ui/commit/fd1fbc3f3787ca26a4f9ff54d6b6c9c2941676d7))
10
+
3
11
  ## [2.1.0](https://github.com/grantcodes/ui/compare/ui-v2.0.2...ui-v2.1.0) (2026-03-14)
4
12
 
5
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grantcodes/ui",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "A personal component system built with Lit web components",
5
5
  "type": "module",
6
6
  "main": "src/main.js",
@@ -30,26 +30,12 @@
30
30
  },
31
31
  "./fonts/*": "./src/fonts/*"
32
32
  },
33
- "scripts": {
34
- "dev": "storybook dev -p 6006",
35
- "watch": "vite build --watch",
36
- "storybook": "storybook dev -p 6006",
37
- "build-storybook": "storybook build",
38
- "build": "npm run build-storybook",
39
- "generate": "plop",
40
- "cem": "cem analyze --config custom-elements-manifest.config.js --litelement",
41
- "fix": "run-s fix:lint",
42
- "fix:lint": "npx @biomejs/biome format --write src",
43
- "test": "run-s lint test:unit",
44
- "lint": "npx @biomejs/biome lint src",
45
- "test:unit": "NODE_ENV=test node --test --test-concurrency=1 src/**/*.test.js"
46
- },
47
33
  "license": "MIT",
48
34
  "dependencies": {
49
- "@grantcodes/style-dictionary": "workspace:^",
50
35
  "lit": "^3.3.1",
51
36
  "sanitize.css": "^13.0.0",
52
- "shiki": "^3.17.1"
37
+ "shiki": "^3.17.1",
38
+ "@grantcodes/style-dictionary": "^1.3.0"
53
39
  },
54
40
  "devDependencies": {
55
41
  "@biomejs/biome": "2.3.8",
@@ -78,5 +64,19 @@
78
64
  "README.md",
79
65
  "LICENCE"
80
66
  ],
81
- "customElements": "custom-elements.json"
82
- }
67
+ "customElements": "custom-elements.json",
68
+ "scripts": {
69
+ "dev": "storybook dev -p 6006",
70
+ "watch": "vite build --watch",
71
+ "storybook": "storybook dev -p 6006",
72
+ "build-storybook": "storybook build",
73
+ "build": "npm run build-storybook",
74
+ "generate": "plop",
75
+ "cem": "cem analyze --config custom-elements-manifest.config.js --litelement",
76
+ "fix": "run-s fix:lint",
77
+ "fix:lint": "npx @biomejs/biome format --write src",
78
+ "test": "run-s lint test:unit",
79
+ "lint": "npx @biomejs/biome lint src",
80
+ "test:unit": "NODE_ENV=test node --test --test-concurrency=1 src/**/*.test.js"
81
+ }
82
+ }