vuetify-nuxt-module 0.5.3 → 0.5.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 CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.5.3"
7
+ "version": "0.5.5"
8
8
  }
package/dist/module.mjs CHANGED
@@ -10,7 +10,7 @@ import { resolveVuetifyBase, normalizePath, writeStyles, cacheDir } from '@vueti
10
10
  import { isAbsolute, join, relative } from 'pathe';
11
11
  import { normalizePath as normalizePath$1 } from 'vite';
12
12
 
13
- const version = "0.5.3";
13
+ const version = "0.5.5";
14
14
 
15
15
  const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
16
16
  const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `/@nuxt-vuetify-configuration/${VIRTUAL_VUETIFY_CONFIGURATION.slice("virtual:".length)}`;
@@ -83,8 +83,9 @@ async function mergeVuetifyModules(options, nuxt) {
83
83
  layer.config.rootDir,
84
84
  layer.config.vuetify?.vuetifyOptions
85
85
  );
86
- if (resolvedOptions2.sources.length)
87
- resolvedOptions2.sources.forEach((s) => vuetifyConfigurationFilesToWatch.add(s.replace(/\\/g, "/")));
86
+ if (resolvedOptions2.sources.length) {
87
+ resolvedOptions2.sources.map((s) => s.replace(/\\/g, "/")).filter((s) => !s.includes("/node_modules/")).forEach((s) => vuetifyConfigurationFilesToWatch.add(s));
88
+ }
88
89
  moduleOptions.push({
89
90
  moduleOptions: layer.config.vuetify?.moduleOptions,
90
91
  vuetifyOptions: resolvedOptions2.config
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "0.5.3",
5
- "packageManager": "pnpm@8.6.9",
4
+ "version": "0.5.5",
5
+ "packageManager": "pnpm@8.6.10",
6
6
  "description": "Zero-Config Nuxt Module for Vuetify",
7
7
  "author": "userquin <userquin@gmail.com>",
8
8
  "license": "MIT",
@@ -63,15 +63,8 @@
63
63
  "prepublishOnly": "pnpm build",
64
64
  "release": "bumpp && npm publish"
65
65
  },
66
- "peerDependencies": {
67
- "@nuxt/kit": "^3.6.2",
68
- "perfect-debounce": "^1.0.0",
69
- "unconfig": "^0.3.9",
70
- "vite-plugin-vuetify": "^1.0.2",
71
- "vuetify": "^3.3.9"
72
- },
73
66
  "dependencies": {
74
- "@nuxt/kit": "^3.6.5",
67
+ "@nuxt/kit": "^3.6.2",
75
68
  "defu": "^6.1.2",
76
69
  "perfect-debounce": "^1.0.0",
77
70
  "unconfig": "^0.3.9",