@unocss/transformer-variant-group 0.32.1 → 0.32.9
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/LICENSE +1 -1
- package/README.md +1 -1
- package/package.json +3 -4
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021 Anthony Fu <https://github.com/antfu>
|
|
3
|
+
Copyright (c) 2021-PRESENT Anthony Fu <https://github.com/antfu>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/transformer-variant-group",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.9",
|
|
4
4
|
"description": "Variant group transformer for UnoCSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unocss",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
],
|
|
33
33
|
"sideEffects": false,
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@unocss/core": "0.32.
|
|
35
|
+
"@unocss/core": "0.32.9"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"magic-string": "^0.26.1"
|
|
@@ -40,6 +40,5 @@
|
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "unbuild",
|
|
42
42
|
"stub": "unbuild --stub"
|
|
43
|
-
}
|
|
44
|
-
"readme": "# @unocss/transformer-variant-group\n\nEnables the [variant group feature of Windi CSS](https://windicss.org/features/variant-groups.html) for UnoCSS.\n\n## Install\n\n```bash\nnpm i -D @unocss/transformer-variant-group\n```\n\n```ts\nimport Unocss from 'unocss/vite'\nimport transformerVariantGroup from '@unocss/transformer-variant-group'\n\nUnocss({\n transformers: [\n transformerVariantGroup(),\n ],\n})\n```\n\n## Usage\n\n```html\n<div class=\"hover:(bg-gray-400 font-medium) font-(light mono)\"/>\n```\n\nWill be transformed to:\n\n```html\n<div class=\"hover:bg-gray-400 hover:font-medium font-light font-mono\"/>\n``` \n\n## License\n\nMIT License © 2021-PRESENT [Anthony Fu](https://github.com/antfu)\n"
|
|
43
|
+
}
|
|
45
44
|
}
|