@vue/devtools 8.0.6 → 8.0.7
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/hook.cjs +6 -0
- package/dist/hook.d.cts +1 -0
- package/dist/hook.d.ts +1 -0
- package/dist/hook.js +7 -0
- package/dist/index.cjs +9 -9
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/dist/chunk.js +0 -24
package/dist/hook.cjs
ADDED
package/dist/hook.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/hook.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/hook.js
ADDED
package/dist/index.cjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
let
|
|
2
|
-
let
|
|
1
|
+
let _vue_devtools_kit = require("@vue/devtools-kit");
|
|
2
|
+
let _vue_devtools_electron = require("@vue/devtools-electron");
|
|
3
3
|
|
|
4
4
|
//#region src/index.ts
|
|
5
5
|
const devtools = {
|
|
6
|
-
...
|
|
7
|
-
connect:
|
|
6
|
+
..._vue_devtools_kit.devtools,
|
|
7
|
+
connect: _vue_devtools_electron.connect
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
//#endregion
|
|
11
|
-
exports.addCustomCommand =
|
|
12
|
-
exports.addCustomTab =
|
|
11
|
+
exports.addCustomCommand = _vue_devtools_kit.addCustomCommand;
|
|
12
|
+
exports.addCustomTab = _vue_devtools_kit.addCustomTab;
|
|
13
13
|
exports.devtools = devtools;
|
|
14
|
-
exports.onDevToolsClientConnected =
|
|
15
|
-
exports.onDevToolsConnected =
|
|
16
|
-
exports.removeCustomCommand =
|
|
14
|
+
exports.onDevToolsClientConnected = _vue_devtools_kit.onDevToolsClientConnected;
|
|
15
|
+
exports.onDevToolsConnected = _vue_devtools_kit.onDevToolsConnected;
|
|
16
|
+
exports.removeCustomCommand = _vue_devtools_kit.removeCustomCommand;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { connect } from "@vue/devtools-electron";
|
|
2
1
|
import { addCustomCommand, addCustomTab, devtools as devtools$1, onDevToolsClientConnected, onDevToolsConnected, removeCustomCommand } from "@vue/devtools-kit";
|
|
2
|
+
import { connect } from "@vue/devtools-electron";
|
|
3
3
|
|
|
4
4
|
//#region src/index.ts
|
|
5
5
|
const devtools = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.7",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"hook.d.ts"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@vue/devtools-kit": "^8.0.
|
|
33
|
-
"@vue/devtools-electron": "^8.0.
|
|
32
|
+
"@vue/devtools-kit": "^8.0.7",
|
|
33
|
+
"@vue/devtools-electron": "^8.0.7"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsdown --clean",
|
package/dist/chunk.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
//#region rolldown:runtime
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
10
|
-
key = keys[i];
|
|
11
|
-
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
12
|
-
get: ((k) => from[k]).bind(null, key),
|
|
13
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
19
|
-
value: mod,
|
|
20
|
-
enumerable: true
|
|
21
|
-
}) : target, mod));
|
|
22
|
-
|
|
23
|
-
//#endregion
|
|
24
|
-
export { };
|