vuetify-nuxt-module 0.7.1 → 0.7.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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -3
- package/package.json +3 -3
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import { parseQuery, parseURL } from 'ufo';
|
|
|
15
15
|
import destr from 'destr';
|
|
16
16
|
import { transformAssetUrls } from 'vite-plugin-vuetify';
|
|
17
17
|
|
|
18
|
-
const version = "0.7.
|
|
18
|
+
const version = "0.7.2";
|
|
19
19
|
|
|
20
20
|
const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
|
|
21
21
|
const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `/@nuxt-vuetify-configuration/${VIRTUAL_VUETIFY_CONFIGURATION.slice("virtual:".length)}`;
|
|
@@ -1297,8 +1297,7 @@ function configureNuxt(configKey, nuxt, ctx) {
|
|
|
1297
1297
|
references.push({ types: "vuetify" });
|
|
1298
1298
|
references.push({ types: "vuetify-nuxt-module/custom-configuration" });
|
|
1299
1299
|
references.push({ types: "vuetify-nuxt-module/configuration" });
|
|
1300
|
-
|
|
1301
|
-
references.push({ path: ctx.resolver.resolve(nuxt.options.buildDir, types) });
|
|
1300
|
+
references.push({ path: ctx.resolver.resolve(runtimeDir, "plugins/types") });
|
|
1302
1301
|
});
|
|
1303
1302
|
if (importComposables) {
|
|
1304
1303
|
const composables = ["useDate", "useLocale", "useDefaults", "useDisplay", "useLayout", "useRtl", "useTheme"];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify-nuxt-module",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.2",
|
|
5
5
|
"packageManager": "pnpm@8.11.0",
|
|
6
6
|
"description": "Zero-Config Nuxt Module for Vuetify",
|
|
7
7
|
"author": "userquin <userquin@gmail.com>",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"prepack": "nuxt-module-build prepare && nuxt-module-build build && jiti scripts/postbuild.ts",
|
|
46
46
|
"dev": "nuxi dev playground",
|
|
47
47
|
"dev:multiple-json": "MULTIPLE_LANG_FILES=true nuxi dev playground",
|
|
48
|
-
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
49
|
-
"dev:prepare:multiple-json": "nuxt-module-build --stub && nuxt-module-build prepare && MULTIPLE_LANG_FILES=true nuxi prepare playground",
|
|
48
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
49
|
+
"dev:prepare:multiple-json": "nuxt-module-build build --stub && nuxt-module-build prepare && MULTIPLE_LANG_FILES=true nuxi prepare playground",
|
|
50
50
|
"dev:build": "nuxi build playground",
|
|
51
51
|
"dev:generate": "nuxi generate playground",
|
|
52
52
|
"dev:build:multiple-json": "MULTIPLE_LANG_FILES=true nuxi build playground",
|