@vueless/nuxt 1.0.1-beta.10 → 1.0.1-beta.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.
- package/dist/module.d.mts +2 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +4 -5
- package/dist/package.json +2 -2
- package/package.json +2 -2
package/dist/module.d.mts
CHANGED
|
@@ -3,13 +3,13 @@ import * as _nuxt_schema from '@nuxt/schema';
|
|
|
3
3
|
declare const _default: _nuxt_schema.NuxtModule<{
|
|
4
4
|
include: never[];
|
|
5
5
|
mirrorCacheDir: string;
|
|
6
|
-
srcDir:
|
|
6
|
+
srcDir: string;
|
|
7
7
|
debug: boolean;
|
|
8
8
|
postcss: boolean;
|
|
9
9
|
}, {
|
|
10
10
|
include: never[];
|
|
11
11
|
mirrorCacheDir: string;
|
|
12
|
-
srcDir:
|
|
12
|
+
srcDir: string;
|
|
13
13
|
debug: boolean;
|
|
14
14
|
postcss: boolean;
|
|
15
15
|
}, false>;
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,16 +14,15 @@ const module = defineNuxtModule({
|
|
|
14
14
|
defaults: {
|
|
15
15
|
include: [],
|
|
16
16
|
mirrorCacheDir: "",
|
|
17
|
-
srcDir:
|
|
17
|
+
srcDir: "",
|
|
18
18
|
debug: false,
|
|
19
19
|
postcss: false
|
|
20
20
|
},
|
|
21
21
|
async setup(_options, _nuxt) {
|
|
22
|
-
|
|
22
|
+
if (_nuxt.options._prepare) return;
|
|
23
23
|
const { resolve } = createResolver(import.meta.url);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
24
|
+
const { include, mirrorCacheDir, debug, postcss, srcDir } = _options;
|
|
25
|
+
await autoImportUserConfigs(srcDir);
|
|
27
26
|
if (hasNuxtModule("@nuxtjs/i18n")) {
|
|
28
27
|
_nuxt.hook("i18n:registerModule", (register) => {
|
|
29
28
|
register({
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueless/nuxt",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.11",
|
|
4
4
|
"description": "Nuxt Styleless UI Component Library, powered by Tailwind CSS.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"test:watch": "vitest watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"vueless": "^1.1.1-beta.
|
|
41
|
+
"vueless": "^1.1.1-beta.50"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@material-symbols/svg-500": "^0.34.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueless/nuxt",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.11",
|
|
4
4
|
"description": "Nuxt Styleless UI Component Library, powered by Tailwind CSS.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"test:watch": "vitest watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"vueless": "^1.1.1-beta.
|
|
41
|
+
"vueless": "^1.1.1-beta.50"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@material-symbols/svg-500": "^0.34.1",
|