vuetify-nuxt-module 0.4.9 → 0.4.10
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 +4 -5
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { isAbsolute, join, relative } from 'pathe';
|
|
|
6
6
|
import { normalizePath as normalizePath$1 } from 'vite';
|
|
7
7
|
import { isPackageExists } from 'local-pkg';
|
|
8
8
|
|
|
9
|
-
const version = "0.4.
|
|
9
|
+
const version = "0.4.10";
|
|
10
10
|
|
|
11
11
|
function isSubdir(root, test) {
|
|
12
12
|
const relative$1 = relative(root, test);
|
|
@@ -869,23 +869,22 @@ const module = defineNuxtModule({
|
|
|
869
869
|
});
|
|
870
870
|
nuxt.hook("vite:extend", ({ config }) => checkVuetifyPlugins(config));
|
|
871
871
|
nuxt.hook("prepare:types", ({ references }) => {
|
|
872
|
+
references.push({ types: "vuetify" });
|
|
872
873
|
references.push({ types: "vuetify-nuxt-module/configuration" });
|
|
873
874
|
});
|
|
874
875
|
const {
|
|
875
|
-
vuetifyBase,
|
|
876
876
|
componentsPromise,
|
|
877
877
|
labComponentsPromise
|
|
878
878
|
} = resolveVuetifyComponents(resolver);
|
|
879
879
|
nuxt.hook("components:extend", async (c) => {
|
|
880
880
|
const components = await componentsPromise;
|
|
881
881
|
Object.keys(components).forEach((component) => {
|
|
882
|
-
const from = components[component].from;
|
|
883
882
|
c.push({
|
|
884
883
|
pascalName: component,
|
|
885
884
|
kebabName: toKebabCase(component),
|
|
886
885
|
export: component,
|
|
887
|
-
filePath:
|
|
888
|
-
shortPath:
|
|
886
|
+
filePath: "vuetify/components",
|
|
887
|
+
shortPath: "vuetify/components",
|
|
889
888
|
chunkName: toKebabCase(component),
|
|
890
889
|
prefetch: false,
|
|
891
890
|
preload: false,
|