@unocss/transformer-variant-group 0.32.7 → 0.32.11

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -1
  3. 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
@@ -1,5 +1,7 @@
1
1
  # @unocss/transformer-variant-group
2
2
 
3
+ <!-- @unocss-ignore -->
4
+
3
5
  Enables the [variant group feature of Windi CSS](https://windicss.org/features/variant-groups.html) for UnoCSS.
4
6
 
5
7
  ## Install
@@ -33,4 +35,4 @@ Will be transformed to:
33
35
 
34
36
  ## License
35
37
 
36
- MIT License © 2021-PRESENT [Anthony Fu](https://github.com/antfu)
38
+ MIT License &copy; 2021-PRESENT [Anthony Fu](https://github.com/antfu)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/transformer-variant-group",
3
- "version": "0.32.7",
3
+ "version": "0.32.11",
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.7"
35
+ "@unocss/core": "0.32.11"
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
  }