@unocss/nuxt 0.12.0 → 0.12.5

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/dist/index.d.ts +4 -4
  2. package/package.json +12 -9
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as _nuxt_kit from '@nuxt/kit';
1
+ import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { UnoOptions } from '@unocss/preset-uno';
3
3
  import { AttributifyOptions } from '@unocss/preset-attributify';
4
4
  import { IconsOptions } from '@unocss/preset-icons';
@@ -55,10 +55,10 @@ interface UnocssNuxtOptions extends PluginConfig {
55
55
  */
56
56
  icons?: boolean | IconsOptions;
57
57
  }
58
- declare const _default: _nuxt_kit.LegacyNuxtModule;
58
+ declare const _default: _nuxt_schema.LegacyNuxtModule;
59
59
 
60
- declare module '@nuxt/kit' {
61
- interface ConfigSchema {
60
+ declare module '@nuxt/schema' {
61
+ interface NuxtConfig {
62
62
  unocss?: UnocssNuxtOptions;
63
63
  }
64
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/nuxt",
3
- "version": "0.12.0",
3
+ "version": "0.12.5",
4
4
  "description": "Nuxt module for UnoCSS",
5
5
  "keywords": [
6
6
  "unocss",
@@ -36,14 +36,17 @@
36
36
  "runtime"
37
37
  ],
38
38
  "dependencies": {
39
- "@unocss/core": "0.12.0",
40
- "@unocss/webpack": "0.12.0",
41
- "@unocss/vite": "0.12.0",
42
- "@unocss/reset": "0.12.0",
43
- "@unocss/preset-uno": "0.12.0",
44
- "@unocss/preset-attributify": "0.12.0",
45
- "@unocss/preset-icons": "0.12.0",
46
- "@nuxt/kit": "npm:@nuxt/kit-edge@latest"
39
+ "@nuxt/kit": "npm:@nuxt/kit-edge@latest",
40
+ "@unocss/core": "0.12.5",
41
+ "@unocss/preset-attributify": "0.12.5",
42
+ "@unocss/preset-icons": "0.12.5",
43
+ "@unocss/preset-uno": "0.12.5",
44
+ "@unocss/reset": "0.12.5",
45
+ "@unocss/vite": "0.12.5",
46
+ "@unocss/webpack": "0.12.5"
47
+ },
48
+ "devDependencies": {
49
+ "@nuxt/schema": "npm:@nuxt/schema-edge@latest"
47
50
  },
48
51
  "scripts": {
49
52
  "build": "tsup",