@unocss/transformer-compile-class 65.4.0 → 65.4.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -29,7 +29,7 @@ At the begin of your class strings, **add `:uno:` at the begin of the strings**
29
29
 
30
30
  ```html
31
31
  <div class=":uno: text-center sm:text-left">
32
- <div class=":uno: text-sm font-bold hover:text-red"/>
32
+ <div class=":uno: text-sm font-bold hover:text-red" />
33
33
  </div>
34
34
  ```
35
35
 
@@ -37,7 +37,7 @@ Will be compiled to:
37
37
 
38
38
  ```html
39
39
  <div class="uno-qlmcrp">
40
- <div class="uno-0qw2gr"/>
40
+ <div class="uno-0qw2gr" />
41
41
  </div>
42
42
  ```
43
43
 
@@ -63,7 +63,7 @@ Will be compiled to:
63
63
 
64
64
  ## Options
65
65
 
66
- You can config the trigger string and prefix for compile class with the options. Refers to [the types](https://github.com/unocss/unocss/blob/main/packages/transformer-compile-class/src/index.ts#L4) for details.
66
+ You can config the trigger string and prefix for compile class with the options. Refers to [the types](https://github.com/unocss/unocss/blob/main/packages-presets/transformer-compile-class/src/index.ts#L4) for details.
67
67
 
68
68
  ## License
69
69
 
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@unocss/transformer-compile-class",
3
3
  "type": "module",
4
- "version": "65.4.0",
4
+ "version": "65.4.2",
5
5
  "description": "Compile group of classes into one class",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
8
8
  "funding": "https://github.com/sponsors/antfu",
9
- "homepage": "https://github.com/unocss/unocss/tree/main/packages/transformer-compile-class#readme",
9
+ "homepage": "https://unocss.dev",
10
10
  "repository": {
11
11
  "type": "git",
12
12
  "url": "https://github.com/unocss/unocss",
13
- "directory": "packages/transformer-compile-class"
13
+ "directory": "packages-presets/transformer-compile-class"
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.0"
36
+ "@unocss/core": "65.4.2"
37
37
  },
38
38
  "devDependencies": {
39
39
  "magic-string": "^0.30.17"