@unocss/core 0.32.13 → 0.33.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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -18,7 +18,7 @@ function escapeSelector(str) {
|
|
|
18
18
|
continue;
|
|
19
19
|
}
|
|
20
20
|
if (codeUnit === 44) {
|
|
21
|
-
result += "
|
|
21
|
+
result += "\\,";
|
|
22
22
|
continue;
|
|
23
23
|
}
|
|
24
24
|
if (codeUnit >= 1 && codeUnit <= 31 || codeUnit === 127 || index === 0 && codeUnit >= 48 && codeUnit <= 57 || index === 1 && codeUnit >= 48 && codeUnit <= 57 && firstCodeUnit === 45) {
|
|
@@ -456,7 +456,7 @@ function resolveConfig(userConfig = {}, defaults = {}) {
|
|
|
456
456
|
};
|
|
457
457
|
}
|
|
458
458
|
|
|
459
|
-
const version = "0.
|
|
459
|
+
const version = "0.33.0";
|
|
460
460
|
|
|
461
461
|
class UnoGenerator {
|
|
462
462
|
constructor(userConfig = {}, defaults = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ function escapeSelector(str) {
|
|
|
14
14
|
continue;
|
|
15
15
|
}
|
|
16
16
|
if (codeUnit === 44) {
|
|
17
|
-
result += "
|
|
17
|
+
result += "\\,";
|
|
18
18
|
continue;
|
|
19
19
|
}
|
|
20
20
|
if (codeUnit >= 1 && codeUnit <= 31 || codeUnit === 127 || index === 0 && codeUnit >= 48 && codeUnit <= 57 || index === 1 && codeUnit >= 48 && codeUnit <= 57 && firstCodeUnit === 45) {
|
|
@@ -452,7 +452,7 @@ function resolveConfig(userConfig = {}, defaults = {}) {
|
|
|
452
452
|
};
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
const version = "0.
|
|
455
|
+
const version = "0.33.0";
|
|
456
456
|
|
|
457
457
|
class UnoGenerator {
|
|
458
458
|
constructor(userConfig = {}, defaults = {}) {
|