@unocss/transformer-variant-group 65.4.0 → 65.4.3
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 +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -26,13 +26,13 @@ export default defineConfig({
|
|
|
26
26
|
## Usage
|
|
27
27
|
|
|
28
28
|
```html
|
|
29
|
-
<div class="hover:(bg-gray-400 font-medium) font-(light mono)"/>
|
|
29
|
+
<div class="hover:(bg-gray-400 font-medium) font-(light mono)" />
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Will be transformed to:
|
|
33
33
|
|
|
34
34
|
```html
|
|
35
|
-
<div class="hover:bg-gray-400 hover:font-medium font-light font-mono"/>
|
|
35
|
+
<div class="hover:bg-gray-400 hover:font-medium font-light font-mono" />
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## License
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/transformer-variant-group",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "65.4.
|
|
4
|
+
"version": "65.4.3",
|
|
5
5
|
"description": "Variant group transformer for UnoCSS",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"funding": "https://github.com/sponsors/antfu",
|
|
9
|
-
"homepage": "https://
|
|
9
|
+
"homepage": "https://unocss.dev",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/unocss/unocss",
|
|
13
|
-
"directory": "packages/transformer-variant-group"
|
|
13
|
+
"directory": "packages-presets/transformer-variant-group"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/unocss/unocss/issues"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@unocss/core": "65.4.
|
|
36
|
+
"@unocss/core": "65.4.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"magic-string": "^0.30.17"
|