@asafarim/design-tokens 0.4.2 → 0.4.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/CHANGELOG.md +7 -0
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to `@asafarim/design-tokens` will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
This project follows [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## 0.4.4
|
|
8
|
+
|
|
9
|
+
- Added automated GitHub Pages demo deployment
|
|
10
|
+
- Demo app now deployed to https://alisafari-it.github.io/design-tokens/
|
|
11
|
+
- Fixed GitHub Actions workflow environment configuration
|
|
12
|
+
- Updated package homepage to point to live demo
|
|
13
|
+
|
|
7
14
|
## 0.1.0
|
|
8
15
|
|
|
9
16
|
- Initial release.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asafarim/design-tokens",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "ASafariM design tokens (CSS variables) with multi-theme support and 30 variable fonts (100-900).",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,10 +48,14 @@
|
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=16"
|
|
50
50
|
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"tsup": "^8.3.5",
|
|
53
|
+
"typescript": "^5.7.2"
|
|
54
|
+
},
|
|
51
55
|
"bugs": {
|
|
52
56
|
"url": "https://github.com/AliSafari-IT/design-tokens/issues"
|
|
53
57
|
},
|
|
54
|
-
"homepage": "https://github.
|
|
58
|
+
"homepage": "https://alisafari-it.github.io/design-tokens/",
|
|
55
59
|
"scripts": {
|
|
56
60
|
"demo": "pnpm --filter design-tokens-demo dev",
|
|
57
61
|
"build": "tsup",
|