vuetify-nuxt-module 0.13.4 → 0.13.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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/package.json +3 -3
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import { pathToFileURL } from 'node:url';
|
|
|
14
14
|
import { parseQuery, parseURL } from 'ufo';
|
|
15
15
|
import destr from 'destr';
|
|
16
16
|
|
|
17
|
-
const version = "0.13.
|
|
17
|
+
const version = "0.13.5";
|
|
18
18
|
|
|
19
19
|
const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
|
|
20
20
|
const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `/@nuxt-vuetify-configuration/${VIRTUAL_VUETIFY_CONFIGURATION.slice("virtual:".length)}`;
|
|
@@ -679,7 +679,7 @@ function vuetifyConfigurationPlugin(ctx) {
|
|
|
679
679
|
|
|
680
680
|
export const isDev = ${ctx.isDev}
|
|
681
681
|
export function vuetifyConfiguration() {
|
|
682
|
-
const options =
|
|
682
|
+
const options = ${JSON.stringify(newVuetifyOptions)}
|
|
683
683
|
${result.directives}
|
|
684
684
|
${result.aliases}
|
|
685
685
|
${result.components}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify-nuxt-module",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.13.
|
|
5
|
-
"packageManager": "pnpm@9.0.
|
|
4
|
+
"version": "0.13.5",
|
|
5
|
+
"packageManager": "pnpm@9.0.6",
|
|
6
6
|
"description": "Zero-Config Nuxt Module for Vuetify",
|
|
7
7
|
"author": "userquin <userquin@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
@@ -140,4 +140,4 @@
|
|
|
140
140
|
"installDependencies": false,
|
|
141
141
|
"startCommand": "node .stackblitz.js && pnpm install && nr prepack && nr dev:prepare && nr dev"
|
|
142
142
|
}
|
|
143
|
-
}
|
|
143
|
+
}
|