vuetify-nuxt-module 0.10.2 → 0.10.3
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 -2
- package/package.json +3 -3
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import { parseQuery, parseURL } from 'ufo';
|
|
|
14
14
|
import destr from 'destr';
|
|
15
15
|
import { transformAssetUrls } from 'vite-plugin-vuetify';
|
|
16
16
|
|
|
17
|
-
const version = "0.10.
|
|
17
|
+
const version = "0.10.3";
|
|
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)}`;
|
|
@@ -498,7 +498,7 @@ function isSubdir(root, test) {
|
|
|
498
498
|
const relative$1 = relative(root, test);
|
|
499
499
|
return relative$1 && !relative$1.startsWith("..") && !isAbsolute(relative$1);
|
|
500
500
|
}
|
|
501
|
-
function vuetifyStylesPlugin(options,
|
|
501
|
+
function vuetifyStylesPlugin(options, _logger) {
|
|
502
502
|
const vuetifyBase = resolveVuetifyBase();
|
|
503
503
|
let configFile;
|
|
504
504
|
const tempFiles = /* @__PURE__ */ new Map();
|
|
@@ -546,6 +546,8 @@ function vuetifyStylesPlugin(options, logger) {
|
|
|
546
546
|
const file = /^\/@fs\/plugin-vuetify\/lib\/(.*?)(\?.*)?$/.exec(id)[1];
|
|
547
547
|
return tempFiles.get(file);
|
|
548
548
|
}
|
|
549
|
+
if (id.includes("plugin-vuetify/lib"))
|
|
550
|
+
return "";
|
|
549
551
|
}
|
|
550
552
|
};
|
|
551
553
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify-nuxt-module",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.10.
|
|
5
|
-
"packageManager": "pnpm@8.14.
|
|
4
|
+
"version": "0.10.3",
|
|
5
|
+
"packageManager": "pnpm@8.14.3",
|
|
6
6
|
"description": "Zero-Config Nuxt Module for Vuetify",
|
|
7
7
|
"author": "userquin <userquin@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
@@ -137,4 +137,4 @@
|
|
|
137
137
|
"installDependencies": false,
|
|
138
138
|
"startCommand": "node .stackblitz.js && pnpm install && nr prepack && nr dev:prepare && nr dev"
|
|
139
139
|
}
|
|
140
|
-
}
|
|
140
|
+
}
|