@plumeria/vite-plugin 4.1.0 → 4.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/dist/index.js +1 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -243,11 +243,10 @@ export function plumeria(options = {}) {
243
243
  if (styleInfo && !styleInfo.hasDynamicAccess) {
244
244
  const atomMap = styleInfo.hashMap[node.property.value];
245
245
  if (atomMap) {
246
- const combinedHash = Object.values(atomMap).join(' ');
247
246
  replacements.push({
248
247
  start: node.span.start - ast.span.start,
249
248
  end: node.span.end - ast.span.start,
250
- content: JSON.stringify(combinedHash),
249
+ content: JSON.stringify(atomMap),
251
250
  });
252
251
  }
253
252
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/vite-plugin",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "type": "module",
5
5
  "description": "Plumeria Vite plugin",
6
6
  "author": "Refirst 11",
@@ -22,7 +22,7 @@
22
22
  "dist/"
23
23
  ],
24
24
  "dependencies": {
25
- "@plumeria/utils": "^4.1.0"
25
+ "@plumeria/utils": "^4.1.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@swc/core": "1.15.8",