@unocss/nuxt 0.62.2 → 0.62.4
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/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.mjs +6 -6
- package/package.json +16 -16
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { UserConfig } from '@unocss/core';
|
|
3
|
-
import { PresetUnoOptions } from '@unocss/preset-uno';
|
|
4
3
|
import { AttributifyOptions } from '@unocss/preset-attributify';
|
|
5
4
|
import { IconsOptions } from '@unocss/preset-icons';
|
|
6
|
-
import { WebFontsOptions } from '@unocss/preset-web-fonts';
|
|
7
|
-
import { TypographyOptions } from '@unocss/preset-typography';
|
|
8
5
|
import { TagifyOptions } from '@unocss/preset-tagify';
|
|
6
|
+
import { TypographyOptions } from '@unocss/preset-typography';
|
|
7
|
+
import { PresetUnoOptions } from '@unocss/preset-uno';
|
|
8
|
+
import { WebFontsOptions } from '@unocss/preset-web-fonts';
|
|
9
9
|
import { PresetWindOptions } from '@unocss/preset-wind';
|
|
10
10
|
import { VitePluginConfig } from '@unocss/vite';
|
|
11
11
|
|
|
@@ -108,7 +108,7 @@ declare module '@nuxt/schema' {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
declare const _default: _nuxt_schema.NuxtModule<UnocssNuxtOptions>;
|
|
111
|
+
declare const _default: _nuxt_schema.NuxtModule<UnocssNuxtOptions, UnocssNuxtOptions, false>;
|
|
112
112
|
|
|
113
113
|
declare module '@nuxt/schema' {
|
|
114
114
|
interface NuxtConfig {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { UserConfig } from '@unocss/core';
|
|
3
|
-
import { PresetUnoOptions } from '@unocss/preset-uno';
|
|
4
3
|
import { AttributifyOptions } from '@unocss/preset-attributify';
|
|
5
4
|
import { IconsOptions } from '@unocss/preset-icons';
|
|
6
|
-
import { WebFontsOptions } from '@unocss/preset-web-fonts';
|
|
7
|
-
import { TypographyOptions } from '@unocss/preset-typography';
|
|
8
5
|
import { TagifyOptions } from '@unocss/preset-tagify';
|
|
6
|
+
import { TypographyOptions } from '@unocss/preset-typography';
|
|
7
|
+
import { PresetUnoOptions } from '@unocss/preset-uno';
|
|
8
|
+
import { WebFontsOptions } from '@unocss/preset-web-fonts';
|
|
9
9
|
import { PresetWindOptions } from '@unocss/preset-wind';
|
|
10
10
|
import { VitePluginConfig } from '@unocss/vite';
|
|
11
11
|
|
|
@@ -108,7 +108,7 @@ declare module '@nuxt/schema' {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
declare const _default: _nuxt_schema.NuxtModule<UnocssNuxtOptions>;
|
|
111
|
+
declare const _default: _nuxt_schema.NuxtModule<UnocssNuxtOptions, UnocssNuxtOptions, false>;
|
|
112
112
|
|
|
113
113
|
declare module '@nuxt/schema' {
|
|
114
114
|
interface NuxtConfig {
|
package/dist/index.mjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { dirname, resolve } from 'node:path';
|
|
2
|
-
import { fileURLToPath } from 'node:url';
|
|
3
2
|
import process from 'node:process';
|
|
3
|
+
import { fileURLToPath } from 'node:url';
|
|
4
4
|
import { defineNuxtModule, addPluginTemplate, isNuxt2, addComponentsDir, addTemplate, findPath, extendWebpackConfig, isNuxt3 } from '@nuxt/kit';
|
|
5
|
-
import WebpackPlugin from '@unocss/webpack';
|
|
6
|
-
import VitePlugin from '@unocss/vite';
|
|
7
5
|
import { createRecoveryConfigLoader } from '@unocss/config';
|
|
8
|
-
import
|
|
6
|
+
import VitePlugin from '@unocss/vite';
|
|
7
|
+
import WebpackPlugin from '@unocss/webpack';
|
|
9
8
|
import presetAttributify from '@unocss/preset-attributify';
|
|
10
9
|
import presetIcons from '@unocss/preset-icons';
|
|
11
|
-
import presetWebFonts from '@unocss/preset-web-fonts';
|
|
12
|
-
import presetTypography from '@unocss/preset-typography';
|
|
13
10
|
import presetTagify from '@unocss/preset-tagify';
|
|
11
|
+
import presetTypography from '@unocss/preset-typography';
|
|
12
|
+
import presetUno from '@unocss/preset-uno';
|
|
13
|
+
import presetWebFonts from '@unocss/preset-web-fonts';
|
|
14
14
|
import presetWind from '@unocss/preset-wind';
|
|
15
15
|
import { cssIdRE } from '@unocss/core';
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.62.
|
|
4
|
+
"version": "0.62.4",
|
|
5
5
|
"description": "Nuxt module for UnoCSS",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -38,23 +38,23 @@
|
|
|
38
38
|
"runtime"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@nuxt/kit": "^3.
|
|
42
|
-
"@unocss/
|
|
43
|
-
"@unocss/
|
|
44
|
-
"@unocss/
|
|
45
|
-
"@unocss/preset-
|
|
46
|
-
"@unocss/preset-
|
|
47
|
-
"@unocss/preset-
|
|
48
|
-
"@unocss/preset-
|
|
49
|
-
"@unocss/preset-
|
|
50
|
-
"@unocss/preset-
|
|
51
|
-
"@unocss/reset": "0.62.
|
|
52
|
-
"@unocss/
|
|
53
|
-
"
|
|
54
|
-
"unocss": "0.62.
|
|
41
|
+
"@nuxt/kit": "^3.13.2",
|
|
42
|
+
"@unocss/config": "0.62.4",
|
|
43
|
+
"@unocss/preset-icons": "0.62.4",
|
|
44
|
+
"@unocss/core": "0.62.4",
|
|
45
|
+
"@unocss/preset-tagify": "0.62.4",
|
|
46
|
+
"@unocss/preset-attributify": "0.62.4",
|
|
47
|
+
"@unocss/preset-typography": "0.62.4",
|
|
48
|
+
"@unocss/preset-uno": "0.62.4",
|
|
49
|
+
"@unocss/preset-web-fonts": "0.62.4",
|
|
50
|
+
"@unocss/preset-wind": "0.62.4",
|
|
51
|
+
"@unocss/reset": "0.62.4",
|
|
52
|
+
"@unocss/vite": "0.62.4",
|
|
53
|
+
"unocss": "0.62.4",
|
|
54
|
+
"@unocss/webpack": "0.62.4"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@nuxt/schema": "^3.
|
|
57
|
+
"@nuxt/schema": "^3.13.2"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "unbuild",
|