@solid-design-system/tokens 5.0.0 → 5.1.0
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/dist/tokens.tailwind.json +4 -0
- package/package.json +12 -51
|
@@ -658,6 +658,10 @@
|
|
|
658
658
|
"DEFAULT": "var(--sd-shadow, 0px 1px 3px 0px rgb(81 81 81 / 75%))",
|
|
659
659
|
"sm": "var(--sd-shadow-sm, 0.5px 0.5px 1.5px 0px rgb(81 81 81 / 100%))"
|
|
660
660
|
},
|
|
661
|
+
"dropShadow": {
|
|
662
|
+
"DEFAULT": "var(--sd-shadow, 0px 1px 3px rgb(81 81 81))",
|
|
663
|
+
"sm": "var(--sd-shadow-sm, 0.5px 0.5px 1.5px rgb(81 81 81))"
|
|
664
|
+
},
|
|
661
665
|
"zIndex": {
|
|
662
666
|
"10": "10",
|
|
663
667
|
"20": "20",
|
package/package.json
CHANGED
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solid-design-system/tokens",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Solid Design System: Tokens",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"verify": "pnpm build",
|
|
9
|
-
"postversion": "pnpm build",
|
|
10
|
-
"release": "semantic-release --tagFormat 'tokens/${version}' -e semantic-release-monorepo",
|
|
11
|
-
"release.dry": "semantic-release -d --tagFormat 'tokens/${version}' -e semantic-release-monorepo"
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public",
|
|
7
|
+
"registry": "https://registry.npmjs.org/"
|
|
12
8
|
},
|
|
9
|
+
"main": "index.js",
|
|
13
10
|
"files": [
|
|
14
11
|
"dist"
|
|
15
12
|
],
|
|
@@ -29,48 +26,12 @@
|
|
|
29
26
|
},
|
|
30
27
|
"license": "MIT",
|
|
31
28
|
"devDependencies": {
|
|
32
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
33
|
-
"@semantic-release/git": "^10.0.1",
|
|
34
|
-
"semantic-release": "^19.0.5",
|
|
35
|
-
"semantic-release-monorepo": "^7.0.5",
|
|
36
29
|
"tailwindcss-export-config": "^4.1.0"
|
|
37
30
|
},
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
[
|
|
46
|
-
"@semantic-release/changelog",
|
|
47
|
-
{
|
|
48
|
-
"changelogFile": "CHANGELOG.md"
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
[
|
|
52
|
-
"@semantic-release/npm",
|
|
53
|
-
{
|
|
54
|
-
"npmPublish": true
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
[
|
|
58
|
-
"@semantic-release/git",
|
|
59
|
-
{
|
|
60
|
-
"message": "chore(release/tokens): ${nextRelease.version} [skip actions]\n\n${nextRelease.notes}",
|
|
61
|
-
"assets": [
|
|
62
|
-
"CHANGELOG.md",
|
|
63
|
-
"package.json"
|
|
64
|
-
]
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
[
|
|
68
|
-
"@semantic-release/github",
|
|
69
|
-
{
|
|
70
|
-
"successComment": false
|
|
71
|
-
}
|
|
72
|
-
]
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
|
-
"readme": "README.md"
|
|
76
|
-
}
|
|
31
|
+
"readme": "README.md",
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "node scripts/build.mjs && echo '✅ Build verified'",
|
|
34
|
+
"verify": "pnpm build",
|
|
35
|
+
"postversion": "pnpm build"
|
|
36
|
+
}
|
|
37
|
+
}
|