@plumeria/compiler 16.2.5 → 16.2.7
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.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -530,7 +530,7 @@ function compileCSS(options) {
|
|
|
530
530
|
if (propPossibilities && propPossibilities.length > 0) {
|
|
531
531
|
const uniqueEntries = [];
|
|
532
532
|
propPossibilities.forEach((entry) => {
|
|
533
|
-
if (!uniqueEntries.some((x) => x.
|
|
533
|
+
if (!uniqueEntries.some((x) => x.key === entry.key)) {
|
|
534
534
|
uniqueEntries.push(entry);
|
|
535
535
|
}
|
|
536
536
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumeria/compiler",
|
|
3
|
-
"version": "16.2.
|
|
3
|
+
"version": "16.2.7",
|
|
4
4
|
"description": "Plumeria swc based compiler for statically extracting css",
|
|
5
5
|
"author": "Refirst 11",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dist/"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@plumeria/utils": "^16.2.
|
|
24
|
+
"@plumeria/utils": "^16.2.7"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@rust-gear/glob": "1.0.0",
|