@unocss/astro 0.48.4 → 0.49.0
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 +4 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -10,11 +10,11 @@ npm i -D unocss
|
|
|
10
10
|
|
|
11
11
|
```ts
|
|
12
12
|
// astro.config.ts
|
|
13
|
-
import
|
|
13
|
+
import UnoCSS from 'unocss/astro'
|
|
14
14
|
|
|
15
15
|
export default {
|
|
16
16
|
integrations: [
|
|
17
|
-
|
|
17
|
+
UnoCSS({ /* options */ }),
|
|
18
18
|
],
|
|
19
19
|
}
|
|
20
20
|
```
|
|
@@ -30,11 +30,11 @@ npm i -D @unocss/astro
|
|
|
30
30
|
|
|
31
31
|
```ts
|
|
32
32
|
// astro.config.mjs
|
|
33
|
-
import
|
|
33
|
+
import UnoCSS from '@unocss/astro'
|
|
34
34
|
|
|
35
35
|
export default {
|
|
36
36
|
integrations: [
|
|
37
|
-
|
|
37
|
+
UnoCSS({
|
|
38
38
|
presets: [
|
|
39
39
|
/* no presets by default */
|
|
40
40
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.0",
|
|
4
4
|
"description": "UnoCSS integration for Astro",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@unocss/core": "0.
|
|
41
|
-
"@unocss/reset": "0.
|
|
42
|
-
"@unocss/vite": "0.
|
|
40
|
+
"@unocss/core": "0.49.0",
|
|
41
|
+
"@unocss/reset": "0.49.0",
|
|
42
|
+
"@unocss/vite": "0.49.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"astro": "^1.9.1"
|