vite-plugin-vue-devtools 7.0.11 → 7.0.12
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/client/assets/{index-A-bLvn6q.css → index-598L0Wdv.css} +1 -1
- package/dist/client/assets/{index-vRqERy5U.js → index-cEmzwhNg.js} +73 -73
- package/dist/client/index.html +2 -2
- package/dist/vite.cjs +2 -2
- package/dist/vite.mjs +2 -2
- package/package.json +6 -6
- package/src/overlay/devtools-overlay.js +4 -4
package/dist/client/index.html
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<link rel="icon" href="/favicon.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-
|
|
10
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
9
|
+
<script type="module" crossorigin src="./assets/index-cEmzwhNg.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="./assets/index-598L0Wdv.css">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
13
13
|
<div id="app"></div>
|
package/dist/vite.cjs
CHANGED
|
@@ -196,7 +196,7 @@ import 'virtual:vue-devtools-path:overlay.js'`;
|
|
|
196
196
|
tags: [
|
|
197
197
|
{
|
|
198
198
|
tag: "script",
|
|
199
|
-
injectTo: "head",
|
|
199
|
+
injectTo: "head-prepend",
|
|
200
200
|
attrs: {
|
|
201
201
|
type: "module",
|
|
202
202
|
src: `${config.base || "/"}@id/virtual:vue-devtools-path:overlay.js`
|
|
@@ -205,7 +205,7 @@ import 'virtual:vue-devtools-path:overlay.js'`;
|
|
|
205
205
|
// inject inspector script manually to ensure it's loaded after vue-devtools
|
|
206
206
|
{
|
|
207
207
|
tag: "script",
|
|
208
|
-
injectTo: "head",
|
|
208
|
+
injectTo: "head-prepend",
|
|
209
209
|
attrs: {
|
|
210
210
|
type: "module",
|
|
211
211
|
src: `${config.base || "/"}@id/virtual:vue-inspector-path:load.js`
|
package/dist/vite.mjs
CHANGED
|
@@ -187,7 +187,7 @@ import 'virtual:vue-devtools-path:overlay.js'`;
|
|
|
187
187
|
tags: [
|
|
188
188
|
{
|
|
189
189
|
tag: "script",
|
|
190
|
-
injectTo: "head",
|
|
190
|
+
injectTo: "head-prepend",
|
|
191
191
|
attrs: {
|
|
192
192
|
type: "module",
|
|
193
193
|
src: `${config.base || "/"}@id/virtual:vue-devtools-path:overlay.js`
|
|
@@ -196,7 +196,7 @@ import 'virtual:vue-devtools-path:overlay.js'`;
|
|
|
196
196
|
// inject inspector script manually to ensure it's loaded after vue-devtools
|
|
197
197
|
{
|
|
198
198
|
tag: "script",
|
|
199
|
-
injectTo: "head",
|
|
199
|
+
injectTo: "head-prepend",
|
|
200
200
|
attrs: {
|
|
201
201
|
type: "module",
|
|
202
202
|
src: `${config.base || "/"}@id/virtual:vue-inspector-path:load.js`
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-vue-devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.12",
|
|
5
5
|
"description": "A vite plugin for Vue DevTools",
|
|
6
6
|
"author": "webfansplz",
|
|
7
7
|
"license": "MIT",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"birpc": "^0.2.14",
|
|
49
49
|
"execa": "^8.0.1",
|
|
50
50
|
"sirv": "^2.0.4",
|
|
51
|
-
"vite-plugin-inspect": "^0.8.
|
|
51
|
+
"vite-plugin-inspect": "^0.8.2",
|
|
52
52
|
"vite-plugin-vue-inspector": "^4.0.2",
|
|
53
|
-
"@vue/devtools-core": "^7.0.
|
|
54
|
-
"@vue/devtools-
|
|
55
|
-
"@vue/devtools-
|
|
53
|
+
"@vue/devtools-core": "^7.0.12",
|
|
54
|
+
"@vue/devtools-shared": "^7.0.12",
|
|
55
|
+
"@vue/devtools-kit": "^7.0.12"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@types/node": "^20.11.
|
|
58
|
+
"@types/node": "^20.11.6",
|
|
59
59
|
"fast-glob": "^3.3.2",
|
|
60
60
|
"image-meta": "^0.2.0",
|
|
61
61
|
"pathe": "^1.1.2"
|