vite-plugin-vue-devtools 7.1.1 → 7.1.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/client/index.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <link rel="icon" href="./logo.svg" type="image/svg+xml" />
7
7
  <title>Vue DevTools Client</title>
8
8
  <script src="./color-scheme.js"></script>
9
- <script type="module" crossorigin src="./assets/index-DZ_zgPIw.js"></script>
9
+ <script type="module" crossorigin src="./assets/index-NGtCHpUr.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="./assets/index-BFXmWfZp.css">
11
11
  </head>
12
12
  <body>
package/dist/vite.cjs CHANGED
@@ -7926,8 +7926,8 @@ function VitePluginVueDevTools(options) {
7926
7926
  const { appendTo } = pluginOptions;
7927
7927
  const [filename] = id.split("?", 2);
7928
7928
  if (appendTo && (typeof appendTo === "string" && filename.endsWith(appendTo) || appendTo instanceof RegExp && appendTo.test(filename)))
7929
- code = `${code}
7930
- import 'virtual:vue-devtools-path:overlay.js'`;
7929
+ code = `import 'virtual:vue-devtools-path:overlay.js';
7930
+ ${code}`;
7931
7931
  return code;
7932
7932
  },
7933
7933
  transformIndexHtml(html) {
package/dist/vite.mjs CHANGED
@@ -7910,8 +7910,8 @@ function VitePluginVueDevTools(options) {
7910
7910
  const { appendTo } = pluginOptions;
7911
7911
  const [filename] = id.split("?", 2);
7912
7912
  if (appendTo && (typeof appendTo === "string" && filename.endsWith(appendTo) || appendTo instanceof RegExp && appendTo.test(filename)))
7913
- code = `${code}
7914
- import 'virtual:vue-devtools-path:overlay.js'`;
7913
+ code = `import 'virtual:vue-devtools-path:overlay.js';
7914
+ ${code}`;
7915
7915
  return code;
7916
7916
  },
7917
7917
  transformIndexHtml(html) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vite-plugin-vue-devtools",
3
3
  "type": "module",
4
- "version": "7.1.1",
4
+ "version": "7.1.2",
5
5
  "description": "A vite plugin for Vue DevTools",
6
6
  "author": "webfansplz",
7
7
  "license": "MIT",
@@ -50,9 +50,9 @@
50
50
  "sirv": "^2.0.4",
51
51
  "vite-plugin-inspect": "^0.8.4",
52
52
  "vite-plugin-vue-inspector": "^5.0.1",
53
- "@vue/devtools-core": "^7.1.1",
54
- "@vue/devtools-shared": "^7.1.1",
55
- "@vue/devtools-kit": "^7.1.1"
53
+ "@vue/devtools-core": "^7.1.2",
54
+ "@vue/devtools-shared": "^7.1.2",
55
+ "@vue/devtools-kit": "^7.1.2"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/node": "^20.12.7",