@tokenami/css 0.0.92 → 0.0.93--canary.477.20251166200.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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -116,7 +116,7 @@ function createCss(config, options = { escapeSpecialChars: true }) {
|
|
|
116
116
|
function generateCacheId(objs) {
|
|
117
117
|
return JSON.stringify(objs, (_, value) => {
|
|
118
118
|
if (typeof value === "object" && value !== null && composeStylesMap.has(value)) {
|
|
119
|
-
return { ...
|
|
119
|
+
return { ...composeStylesMap.get(value), ...value };
|
|
120
120
|
}
|
|
121
121
|
return value;
|
|
122
122
|
});
|
package/dist/index.js
CHANGED
|
@@ -95,7 +95,7 @@ function createCss(config, options = { escapeSpecialChars: true }) {
|
|
|
95
95
|
function generateCacheId(objs) {
|
|
96
96
|
return JSON.stringify(objs, (_, value) => {
|
|
97
97
|
if (typeof value === "object" && value !== null && composeStylesMap.has(value)) {
|
|
98
|
-
return { ...
|
|
98
|
+
return { ...composeStylesMap.get(value), ...value };
|
|
99
99
|
}
|
|
100
100
|
return value;
|
|
101
101
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tokenami/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.93--canary.477.20251166200.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"typecheck": "tsc --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tokenami/config": "0.0.
|
|
35
|
+
"@tokenami/config": "0.0.93--canary.477.20251166200.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"tokenami": "0.0.
|
|
38
|
+
"tokenami": "0.0.93--canary.477.20251166200.0",
|
|
39
39
|
"tsup": "^8.4.0",
|
|
40
40
|
"typescript": "^5.1.3"
|
|
41
41
|
},
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"tokenami": ">= 0",
|
|
44
44
|
"typescript": ">= 5"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "47fb8e1c544d5b03e145bfb44842ee3984c70f06"
|
|
47
47
|
}
|