unocss 0.43.2 → 0.44.2
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/README.md +1 -1
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -594,7 +594,7 @@ By default UnoCSS will scan for components files like: `.jsx`, `.tsx`, `.vue`, `
|
|
|
594
594
|
Sometimes you might want have to use dynamic concatenations like:
|
|
595
595
|
|
|
596
596
|
```html
|
|
597
|
-
<div class="p-${size}"></div>
|
|
597
|
+
<div class="p-${size}"></div> <!-- this won't work! -->
|
|
598
598
|
```
|
|
599
599
|
|
|
600
600
|
Due the fact that UnoCSS works in build time using static extracting, at the compile time we can't possibility know all the combination of the utilities. For that, you can configure the `safelist` option.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unocss",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.44.2",
|
|
4
4
|
"description": "The instant on-demand Atomic CSS engine.",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"node": ">=14"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
|
-
"@unocss/webpack": "0.
|
|
96
|
+
"@unocss/webpack": "0.44.2"
|
|
97
97
|
},
|
|
98
98
|
"peerDependenciesMeta": {
|
|
99
99
|
"@unocss/webpack": {
|
|
@@ -101,24 +101,24 @@
|
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
|
-
"@unocss/cli": "0.
|
|
105
|
-
"@unocss/core": "0.
|
|
106
|
-
"@unocss/preset-attributify": "0.
|
|
107
|
-
"@unocss/preset-icons": "0.
|
|
108
|
-
"@unocss/preset-mini": "0.
|
|
109
|
-
"@unocss/preset-tagify": "0.
|
|
110
|
-
"@unocss/preset-typography": "0.
|
|
111
|
-
"@unocss/preset-uno": "0.
|
|
112
|
-
"@unocss/preset-web-fonts": "0.
|
|
113
|
-
"@unocss/preset-wind": "0.
|
|
114
|
-
"@unocss/reset": "0.
|
|
115
|
-
"@unocss/transformer-compile-class": "0.
|
|
116
|
-
"@unocss/transformer-directives": "0.
|
|
117
|
-
"@unocss/transformer-variant-group": "0.
|
|
118
|
-
"@unocss/vite": "0.
|
|
104
|
+
"@unocss/cli": "0.44.2",
|
|
105
|
+
"@unocss/core": "0.44.2",
|
|
106
|
+
"@unocss/preset-attributify": "0.44.2",
|
|
107
|
+
"@unocss/preset-icons": "0.44.2",
|
|
108
|
+
"@unocss/preset-mini": "0.44.2",
|
|
109
|
+
"@unocss/preset-tagify": "0.44.2",
|
|
110
|
+
"@unocss/preset-typography": "0.44.2",
|
|
111
|
+
"@unocss/preset-uno": "0.44.2",
|
|
112
|
+
"@unocss/preset-web-fonts": "0.44.2",
|
|
113
|
+
"@unocss/preset-wind": "0.44.2",
|
|
114
|
+
"@unocss/reset": "0.44.2",
|
|
115
|
+
"@unocss/transformer-compile-class": "0.44.2",
|
|
116
|
+
"@unocss/transformer-directives": "0.44.2",
|
|
117
|
+
"@unocss/transformer-variant-group": "0.44.2",
|
|
118
|
+
"@unocss/vite": "0.44.2"
|
|
119
119
|
},
|
|
120
120
|
"devDependencies": {
|
|
121
|
-
"@unocss/webpack": "0.
|
|
121
|
+
"@unocss/webpack": "0.44.2"
|
|
122
122
|
},
|
|
123
123
|
"scripts": {
|
|
124
124
|
"build": "unbuild",
|