@grantcodes/style-dictionary 1.2.0 → 1.2.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.
@@ -1,44 +1,45 @@
1
-
2
- > @grantcodes/style-dictionary@1.2.0 build /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
3
- > node ./build.js
4
-
5
- 🚧 No theme specified, building all themes...
6
-
7
- 🏗️ Building WIREFRAME theme
8
-
9
- 🏗️ Building GRANTCODES theme
10
-
11
- 🏗️ Building TODOMAP theme
12
-
13
- css
14
- ✔︎ dist/css/todomap/tokens.css
15
- ✔︎ dist/css/todomap/todomap.css
16
-
17
- json
18
- ✔︎ dist/json/todomap/tokens.json
19
-
20
- css
21
- ✔︎ dist/css/grantcodes/tokens.css
22
- ✔︎ dist/css/grantcodes/grantcodes.css
23
-
24
- json
25
- ✔︎ dist/json/grantcodes/tokens.json
26
-
27
- css
28
- ✔︎ dist/css/wireframe/tokens.css
29
- ✔︎ dist/css/wireframe/wireframe.css
30
-
31
- json
32
- ✔︎ dist/json/wireframe/tokens.json
33
-
34
- ts
35
- ✔︎ dist/js/todomap/style-dictionary.js
36
- ✔︎ dist/js/todomap/style-dictionary.d.ts
37
-
38
- ts
39
- ✔︎ dist/js/grantcodes/style-dictionary.js
40
- ✔︎ dist/js/grantcodes/style-dictionary.d.ts
41
-
42
- ts
43
- ✔︎ dist/js/wireframe/style-dictionary.js
44
- ✔︎ dist/js/wireframe/style-dictionary.d.ts
1
+
2
+
3
+ > @grantcodes/style-dictionary@1.2.1 build /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
4
+ > node ./build.js
5
+
6
+ 🚧 No theme specified, building all themes...
7
+
8
+ 🏗️ Building WIREFRAME theme
9
+
10
+ 🏗️ Building GRANTCODES theme
11
+
12
+ 🏗️ Building TODOMAP theme
13
+
14
+ css
15
+ ✔︎ dist/css/todomap/tokens.css
16
+ ✔︎ dist/css/todomap/todomap.css
17
+
18
+ json
19
+ ✔︎ dist/json/todomap/tokens.json
20
+
21
+ css
22
+ ✔︎ dist/css/grantcodes/tokens.css
23
+ ✔︎ dist/css/grantcodes/grantcodes.css
24
+
25
+ json
26
+ ✔︎ dist/json/grantcodes/tokens.json
27
+
28
+ css
29
+ ✔︎ dist/css/wireframe/tokens.css
30
+ ✔︎ dist/css/wireframe/wireframe.css
31
+
32
+ json
33
+ ✔︎ dist/json/wireframe/tokens.json
34
+
35
+ ts
36
+ ✔︎ dist/js/todomap/style-dictionary.js
37
+ ✔︎ dist/js/todomap/style-dictionary.d.ts
38
+
39
+ ts
40
+ ✔︎ dist/js/grantcodes/style-dictionary.js
41
+ ✔︎ dist/js/grantcodes/style-dictionary.d.ts
42
+
43
+ ts
44
+ ✔︎ dist/js/wireframe/style-dictionary.js
45
+ ✔︎ dist/js/wireframe/style-dictionary.d.ts
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.1](https://github.com/grantcodes/ui/compare/style-dictionary-v1.2.0...style-dictionary-v1.2.1) (2026-03-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update imports & exports ([db68e69](https://github.com/grantcodes/ui/commit/db68e69f5307fd62f26a6e65c9904e86ab156af6))
9
+
3
10
  ## [1.1.0](https://github.com/grantcodes/style-dictionary/compare/v1.0.0...v1.1.0) (2022-09-23)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,17 +1,20 @@
1
1
  {
2
2
  "name": "@grantcodes/style-dictionary",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "description": "My personal style dictionary",
6
6
  "main": "./dist/js/default/style-dictionary.js",
7
7
  "exports": {
8
8
  "./wireframe/css": "./dist/css/wireframe/tokens.css",
9
+ "./wireframe/css/theme": "./dist/css/wireframe/wireframe.css",
9
10
  "./wireframe/js": "./dist/js/wireframe/style-dictionary.js",
10
11
  "./wireframe/json": "./dist/json/wireframe/tokens.json",
11
12
  "./grantcodes/css": "./dist/css/grantcodes/tokens.css",
13
+ "./grantcodes/css/theme": "./dist/css/grantcodes/grantcodes.css",
12
14
  "./grantcodes/js": "./dist/js/grantcodes/style-dictionary.js",
13
15
  "./grantcodes/json": "./dist/json/grantcodes/tokens.json",
14
16
  "./todomap/css": "./dist/css/todomap/tokens.css",
17
+ "./todomap/css/theme": "./dist/css/todomap/todomap.css",
15
18
  "./todomap/js": "./dist/js/todomap/style-dictionary.js",
16
19
  "./todomap/json": "./dist/json/todomap/tokens.json",
17
20
  "./assets/fonts/greycliff": "./assets/fonts/greycliff.css",
@@ -1,5 +0,0 @@
1
-
2
- > @grantcodes/style-dictionary@1.1.0 lint /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
3
- > npx @biomejs/biome lint tokens build.js lib
4
-
5
- Checked 48 files in 6ms. No fixes applied.