@vitejs/devtools 0.0.0-alpha.31 → 0.0.0-alpha.32
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/{DockIcon-BfVdt_M0.js → DockIcon-DC06YRV1.js} +1 -1
- package/dist/{ViewBuiltinLogs-C8wFxIxg.js → ViewBuiltinLogs-BpU8wNYx.js} +1 -1
- package/dist/{ViewBuiltinTerminals-CrBOq_Ni.js → ViewBuiltinTerminals-1w0Jz6t0.js} +3 -3
- package/dist/cli-commands.js +2 -2
- package/dist/cli.js +1 -1
- package/dist/client/inject.js +3 -3
- package/dist/client/standalone/assets/ViewBuiltinLogs-D_1j1vpl.js +1 -0
- package/dist/client/standalone/assets/{ViewBuiltinTerminals-B9l9XmES.js → ViewBuiltinTerminals-BfkQ4Bsj.js} +1 -1
- package/dist/client/standalone/assets/index-DWcF5wcd.js +2 -0
- package/dist/client/standalone/index.html +1 -1
- package/dist/client/webcomponents.d.ts +4 -4
- package/dist/client/webcomponents.js +7 -7
- package/dist/{dist-BpFPAu5f.js → dist-B1eLoAag.js} +3 -3
- package/dist/{docks-CYaKLVhQ.js → docks-BVWse3rL.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/{plugins-BbzqUdpu.js → plugins-CM-4geJK.js} +3 -1
- package/dist/{standalone-DVh1a9tu.js → standalone-CfUW6ZhV.js} +1 -1
- package/dist/{vue.runtime.esm-bundler-DL0i8o0W.js → vue.runtime.esm-bundler-CHmRsJSH.js} +81 -32
- package/package.json +9 -9
- package/dist/client/standalone/assets/ViewBuiltinLogs-CYvdMq-7.js +0 -1
- package/dist/client/standalone/assets/index-DWC0UjCz.js +0 -2
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as createDevToolsContext, n as createDevToolsMiddleware, t as DevTools } from "./plugins-
|
|
1
|
+
import { a as createDevToolsContext, n as createDevToolsMiddleware, t as DevTools } from "./plugins-CM-4geJK.js";
|
|
2
2
|
|
|
3
3
|
export { DevTools, createDevToolsContext, createDevToolsMiddleware };
|
|
@@ -2889,14 +2889,16 @@ async function createWsServer(options) {
|
|
|
2889
2889
|
random: true
|
|
2890
2890
|
});
|
|
2891
2891
|
const host = options.hostWebSocket ?? "localhost";
|
|
2892
|
+
const https = options.context.viteConfig.server.https;
|
|
2892
2893
|
const wsClients = /* @__PURE__ */ new Set();
|
|
2893
2894
|
const context = options.context;
|
|
2894
2895
|
const contextInternal = getInternalContext(context);
|
|
2895
|
-
const isClientAuthDisabled = context.mode === "build" || context.viteConfig.devtools?.clientAuth === false || process$1.env.VITE_DEVTOOLS_DISABLE_CLIENT_AUTH === "true";
|
|
2896
|
+
const isClientAuthDisabled = context.mode === "build" || context.viteConfig.devtools?.config?.clientAuth === false || process$1.env.VITE_DEVTOOLS_DISABLE_CLIENT_AUTH === "true";
|
|
2896
2897
|
if (isClientAuthDisabled) console.warn("[Vite DevTools] Client authentication is disabled. Any browser can connect to the devtools and access to your server and filesystem.");
|
|
2897
2898
|
const preset = createWsRpcPreset({
|
|
2898
2899
|
port,
|
|
2899
2900
|
host,
|
|
2901
|
+
https,
|
|
2900
2902
|
onConnected: (ws, req, meta) => {
|
|
2901
2903
|
const authId = new URL(req.url ?? "", "http://localhost").searchParams.get("vite_devtools_auth_id") ?? void 0;
|
|
2902
2904
|
if (isClientAuthDisabled) meta.isTrusted = true;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
//#region ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
1
|
+
//#region ../../node_modules/.pnpm/@vue+shared@3.5.28/node_modules/@vue/shared/dist/shared.esm-bundler.js
|
|
2
2
|
/**
|
|
3
|
-
* @vue/shared v3.5.
|
|
3
|
+
* @vue/shared v3.5.28
|
|
4
4
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5
5
|
* @license MIT
|
|
6
6
|
**/
|
|
@@ -26,6 +26,7 @@ const hasOwn = (val, key) => hasOwnProperty$1.call(val, key);
|
|
|
26
26
|
const isArray = Array.isArray;
|
|
27
27
|
const isMap = (val) => toTypeString(val) === "[object Map]";
|
|
28
28
|
const isSet = (val) => toTypeString(val) === "[object Set]";
|
|
29
|
+
const isDate = (val) => toTypeString(val) === "[object Date]";
|
|
29
30
|
const isFunction = (val) => typeof val === "function";
|
|
30
31
|
const isString = (val) => typeof val === "string";
|
|
31
32
|
const isSymbol = (val) => typeof val === "symbol";
|
|
@@ -132,6 +133,36 @@ const isBooleanAttr = /* @__PURE__ */ makeMap(specialBooleanAttrs + `,async,auto
|
|
|
132
133
|
function includeBooleanAttr(value) {
|
|
133
134
|
return !!value || value === "";
|
|
134
135
|
}
|
|
136
|
+
function looseCompareArrays(a, b) {
|
|
137
|
+
if (a.length !== b.length) return false;
|
|
138
|
+
let equal = true;
|
|
139
|
+
for (let i = 0; equal && i < a.length; i++) equal = looseEqual(a[i], b[i]);
|
|
140
|
+
return equal;
|
|
141
|
+
}
|
|
142
|
+
function looseEqual(a, b) {
|
|
143
|
+
if (a === b) return true;
|
|
144
|
+
let aValidType = isDate(a);
|
|
145
|
+
let bValidType = isDate(b);
|
|
146
|
+
if (aValidType || bValidType) return aValidType && bValidType ? a.getTime() === b.getTime() : false;
|
|
147
|
+
aValidType = isSymbol(a);
|
|
148
|
+
bValidType = isSymbol(b);
|
|
149
|
+
if (aValidType || bValidType) return a === b;
|
|
150
|
+
aValidType = isArray(a);
|
|
151
|
+
bValidType = isArray(b);
|
|
152
|
+
if (aValidType || bValidType) return aValidType && bValidType ? looseCompareArrays(a, b) : false;
|
|
153
|
+
aValidType = isObject(a);
|
|
154
|
+
bValidType = isObject(b);
|
|
155
|
+
if (aValidType || bValidType) {
|
|
156
|
+
if (!aValidType || !bValidType) return false;
|
|
157
|
+
if (Object.keys(a).length !== Object.keys(b).length) return false;
|
|
158
|
+
for (const key in a) {
|
|
159
|
+
const aHasKey = a.hasOwnProperty(key);
|
|
160
|
+
const bHasKey = b.hasOwnProperty(key);
|
|
161
|
+
if (aHasKey && !bHasKey || !aHasKey && bHasKey || !looseEqual(a[key], b[key])) return false;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return String(a) === String(b);
|
|
165
|
+
}
|
|
135
166
|
const isRef$1 = (val) => {
|
|
136
167
|
return !!(val && val["__v_isRef"] === true);
|
|
137
168
|
};
|
|
@@ -155,9 +186,9 @@ const stringifySymbol = (v, i = "") => {
|
|
|
155
186
|
};
|
|
156
187
|
|
|
157
188
|
//#endregion
|
|
158
|
-
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
189
|
+
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.28/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js
|
|
159
190
|
/**
|
|
160
|
-
* @vue/reactivity v3.5.
|
|
191
|
+
* @vue/reactivity v3.5.28
|
|
161
192
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
162
193
|
* @license MIT
|
|
163
194
|
**/
|
|
@@ -185,6 +216,7 @@ var EffectScope = class {
|
|
|
185
216
|
*/
|
|
186
217
|
this.cleanups = [];
|
|
187
218
|
this._isPaused = false;
|
|
219
|
+
this.__v_skip = true;
|
|
188
220
|
this.parent = activeEffectScope;
|
|
189
221
|
if (!detached && activeEffectScope) this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(this) - 1;
|
|
190
222
|
}
|
|
@@ -1582,9 +1614,9 @@ function traverse(value, depth = Infinity, seen) {
|
|
|
1582
1614
|
}
|
|
1583
1615
|
|
|
1584
1616
|
//#endregion
|
|
1585
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
1617
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.28/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js
|
|
1586
1618
|
/**
|
|
1587
|
-
* @vue/runtime-core v3.5.
|
|
1619
|
+
* @vue/runtime-core v3.5.28
|
|
1588
1620
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
1589
1621
|
* @license MIT
|
|
1590
1622
|
**/
|
|
@@ -2286,8 +2318,7 @@ function useTemplateRef(key) {
|
|
|
2286
2318
|
const r = shallowRef(null);
|
|
2287
2319
|
if (i) {
|
|
2288
2320
|
const refs = i.refs === EMPTY_OBJ ? i.refs = {} : i.refs;
|
|
2289
|
-
|
|
2290
|
-
if (!!(process.env.NODE_ENV !== "production") && (desc = Object.getOwnPropertyDescriptor(refs, key)) && !desc.configurable) warn$1(`useTemplateRef('${key}') already exists.`);
|
|
2321
|
+
if (!!(process.env.NODE_ENV !== "production") && isTemplateRefKey(refs, key)) warn$1(`useTemplateRef('${key}') already exists.`);
|
|
2291
2322
|
else Object.defineProperty(refs, key, {
|
|
2292
2323
|
enumerable: true,
|
|
2293
2324
|
get: () => r.value,
|
|
@@ -2298,6 +2329,10 @@ function useTemplateRef(key) {
|
|
|
2298
2329
|
if (!!(process.env.NODE_ENV !== "production")) knownTemplateRefs.add(ret);
|
|
2299
2330
|
return ret;
|
|
2300
2331
|
}
|
|
2332
|
+
function isTemplateRefKey(refs, key) {
|
|
2333
|
+
let desc;
|
|
2334
|
+
return !!((desc = Object.getOwnPropertyDescriptor(refs, key)) && !desc.configurable);
|
|
2335
|
+
}
|
|
2301
2336
|
const pendingSetRefMap = /* @__PURE__ */ new WeakMap();
|
|
2302
2337
|
function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
2303
2338
|
if (isArray(rawRef)) {
|
|
@@ -2324,10 +2359,13 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
2324
2359
|
if (hasOwn(rawSetupState, key) && !isRef(rawSetupState[key])) warn$1(`Template ref "${key}" used on a non-ref value. It will not work in the production build.`);
|
|
2325
2360
|
if (knownTemplateRefs.has(rawSetupState[key])) return false;
|
|
2326
2361
|
}
|
|
2362
|
+
if (isTemplateRefKey(refs, key)) return false;
|
|
2327
2363
|
return hasOwn(rawSetupState, key);
|
|
2328
2364
|
};
|
|
2329
|
-
const canSetRef = (ref2) => {
|
|
2330
|
-
|
|
2365
|
+
const canSetRef = (ref2, key) => {
|
|
2366
|
+
if (!!(process.env.NODE_ENV !== "production") && knownTemplateRefs.has(ref2)) return false;
|
|
2367
|
+
if (key && isTemplateRefKey(refs, key)) return false;
|
|
2368
|
+
return true;
|
|
2331
2369
|
};
|
|
2332
2370
|
if (oldRef != null && oldRef !== ref) {
|
|
2333
2371
|
invalidatePendingSetRef(oldRawRef);
|
|
@@ -2335,8 +2373,8 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
2335
2373
|
refs[oldRef] = null;
|
|
2336
2374
|
if (canSetSetupRef(oldRef)) setupState[oldRef] = null;
|
|
2337
2375
|
} else if (isRef(oldRef)) {
|
|
2338
|
-
if (canSetRef(oldRef)) oldRef.value = null;
|
|
2339
2376
|
const oldRawRefAtom = oldRawRef;
|
|
2377
|
+
if (canSetRef(oldRef, oldRawRefAtom.k)) oldRef.value = null;
|
|
2340
2378
|
if (oldRawRefAtom.k) refs[oldRawRefAtom.k] = null;
|
|
2341
2379
|
}
|
|
2342
2380
|
}
|
|
@@ -2354,7 +2392,7 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
2354
2392
|
if (canSetSetupRef(ref)) setupState[ref] = refs[ref];
|
|
2355
2393
|
} else {
|
|
2356
2394
|
const newVal = [refValue];
|
|
2357
|
-
if (canSetRef(ref)) ref.value = newVal;
|
|
2395
|
+
if (canSetRef(ref, rawRef.k)) ref.value = newVal;
|
|
2358
2396
|
if (rawRef.k) refs[rawRef.k] = newVal;
|
|
2359
2397
|
}
|
|
2360
2398
|
else if (!existing.includes(refValue)) existing.push(refValue);
|
|
@@ -2362,7 +2400,7 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
2362
2400
|
refs[ref] = value;
|
|
2363
2401
|
if (canSetSetupRef(ref)) setupState[ref] = value;
|
|
2364
2402
|
} else if (_isRef) {
|
|
2365
|
-
if (canSetRef(ref)) ref.value = value;
|
|
2403
|
+
if (canSetRef(ref, rawRef.k)) ref.value = value;
|
|
2366
2404
|
if (rawRef.k) refs[rawRef.k] = value;
|
|
2367
2405
|
} else if (!!(process.env.NODE_ENV !== "production")) warn$1("Invalid template ref type:", ref, `(${typeof ref})`);
|
|
2368
2406
|
};
|
|
@@ -3387,7 +3425,7 @@ function shouldUpdateComponent(prevVNode, nextVNode, optimized) {
|
|
|
3387
3425
|
const dynamicProps = nextVNode.dynamicProps;
|
|
3388
3426
|
for (let i = 0; i < dynamicProps.length; i++) {
|
|
3389
3427
|
const key = dynamicProps[i];
|
|
3390
|
-
if (nextProps
|
|
3428
|
+
if (hasPropValueChanged(nextProps, prevProps, key) && !isEmitListener(emits, key)) return true;
|
|
3391
3429
|
}
|
|
3392
3430
|
}
|
|
3393
3431
|
} else {
|
|
@@ -3406,10 +3444,16 @@ function hasPropsChanged(prevProps, nextProps, emitsOptions) {
|
|
|
3406
3444
|
if (nextKeys.length !== Object.keys(prevProps).length) return true;
|
|
3407
3445
|
for (let i = 0; i < nextKeys.length; i++) {
|
|
3408
3446
|
const key = nextKeys[i];
|
|
3409
|
-
if (nextProps
|
|
3447
|
+
if (hasPropValueChanged(nextProps, prevProps, key) && !isEmitListener(emitsOptions, key)) return true;
|
|
3410
3448
|
}
|
|
3411
3449
|
return false;
|
|
3412
3450
|
}
|
|
3451
|
+
function hasPropValueChanged(nextProps, prevProps, key) {
|
|
3452
|
+
const nextProp = nextProps[key];
|
|
3453
|
+
const prevProp = prevProps[key];
|
|
3454
|
+
if (key === "style" && isObject(nextProp) && isObject(prevProp)) return !looseEqual(nextProp, prevProp);
|
|
3455
|
+
return nextProp !== prevProp;
|
|
3456
|
+
}
|
|
3413
3457
|
function updateHOCHostEl({ vnode, parent }, el) {
|
|
3414
3458
|
while (parent) {
|
|
3415
3459
|
const root = parent.subTree;
|
|
@@ -3844,13 +3888,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
3844
3888
|
if (n1 == null) hostInsert(n2.el = hostCreateText(n2.children), container, anchor);
|
|
3845
3889
|
else {
|
|
3846
3890
|
const el = n2.el = n1.el;
|
|
3847
|
-
if (n2.children !== n1.children)
|
|
3848
|
-
const childNodes = container.childNodes;
|
|
3849
|
-
const newChild = hostCreateText(n2.children);
|
|
3850
|
-
const oldChild = childNodes[n2.__elIndex = n1.__elIndex];
|
|
3851
|
-
hostInsert(newChild, container, oldChild);
|
|
3852
|
-
hostRemove(oldChild);
|
|
3853
|
-
} else hostSetText(el, n2.children);
|
|
3891
|
+
if (n2.children !== n1.children) hostSetText(el, n2.children);
|
|
3854
3892
|
}
|
|
3855
3893
|
};
|
|
3856
3894
|
const processCommentNode = (n1, n2, container, anchor) => {
|
|
@@ -3893,7 +3931,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
3893
3931
|
else if (n2.type === "math") namespace = "mathml";
|
|
3894
3932
|
if (n1 == null) mountElement(n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized);
|
|
3895
3933
|
else {
|
|
3896
|
-
const customElement =
|
|
3934
|
+
const customElement = n1.el && n1.el._isVueCE ? n1.el : null;
|
|
3897
3935
|
try {
|
|
3898
3936
|
if (customElement) customElement._beginPatch();
|
|
3899
3937
|
patchElement(n1, n2, parentComponent, parentSuspense, namespace, slotScopeIds, optimized);
|
|
@@ -4104,7 +4142,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4104
4142
|
if (isAsyncWrapperVNode && type.__asyncHydrate) type.__asyncHydrate(el, instance, hydrateSubTree);
|
|
4105
4143
|
else hydrateSubTree();
|
|
4106
4144
|
} else {
|
|
4107
|
-
if (root.ce && root.ce.
|
|
4145
|
+
if (root.ce && root.ce._hasShadowRoot()) root.ce._injectChildStyle(type);
|
|
4108
4146
|
if (!!(process.env.NODE_ENV !== "production")) startMeasure(instance, `render`);
|
|
4109
4147
|
const subTree = instance.subTree = renderComponentRoot(instance);
|
|
4110
4148
|
if (!!(process.env.NODE_ENV !== "production")) endMeasure(instance, `render`);
|
|
@@ -4132,7 +4170,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4132
4170
|
updateComponentPreRender(instance, next, optimized);
|
|
4133
4171
|
}
|
|
4134
4172
|
nonHydratedAsyncRoot.asyncDep.then(() => {
|
|
4135
|
-
|
|
4173
|
+
queuePostRenderEffect(() => {
|
|
4174
|
+
if (!instance.isUnmounted) update();
|
|
4175
|
+
}, parentSuspense);
|
|
4136
4176
|
});
|
|
4137
4177
|
return;
|
|
4138
4178
|
}
|
|
@@ -4520,8 +4560,10 @@ function traverseStaticChildren(n1, n2, shallow = false) {
|
|
|
4520
4560
|
}
|
|
4521
4561
|
if (!shallow && c2.patchFlag !== -2) traverseStaticChildren(c1, c2);
|
|
4522
4562
|
}
|
|
4523
|
-
if (c2.type === Text)
|
|
4524
|
-
|
|
4563
|
+
if (c2.type === Text) {
|
|
4564
|
+
if (c2.patchFlag === -1) c2 = ch2[i] = cloneIfMounted(c2);
|
|
4565
|
+
c2.el = c1.el;
|
|
4566
|
+
}
|
|
4525
4567
|
if (c2.type === Comment && !c2.el) c2.el = c1.el;
|
|
4526
4568
|
if (!!(process.env.NODE_ENV !== "production")) c2.el && (c2.el.__vnode = c2);
|
|
4527
4569
|
}
|
|
@@ -5613,15 +5655,15 @@ function initCustomFormatter() {
|
|
|
5613
5655
|
if (window.devtoolsFormatters) window.devtoolsFormatters.push(formatter);
|
|
5614
5656
|
else window.devtoolsFormatters = [formatter];
|
|
5615
5657
|
}
|
|
5616
|
-
const version = "3.5.
|
|
5658
|
+
const version = "3.5.28";
|
|
5617
5659
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
5618
5660
|
const devtools = (process.env.NODE_ENV, devtools$1);
|
|
5619
5661
|
const setDevtoolsHook = (process.env.NODE_ENV, setDevtoolsHook$1);
|
|
5620
5662
|
|
|
5621
5663
|
//#endregion
|
|
5622
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
5664
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.28/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js
|
|
5623
5665
|
/**
|
|
5624
|
-
* @vue/runtime-dom v3.5.
|
|
5666
|
+
* @vue/runtime-dom v3.5.28
|
|
5625
5667
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5626
5668
|
* @license MIT
|
|
5627
5669
|
**/
|
|
@@ -6244,6 +6286,12 @@ var VueElement = class VueElement extends BaseClass {
|
|
|
6244
6286
|
/**
|
|
6245
6287
|
* @internal
|
|
6246
6288
|
*/
|
|
6289
|
+
_hasShadowRoot() {
|
|
6290
|
+
return this._def.shadowRoot !== false;
|
|
6291
|
+
}
|
|
6292
|
+
/**
|
|
6293
|
+
* @internal
|
|
6294
|
+
*/
|
|
6247
6295
|
_removeChildStyle(comp) {
|
|
6248
6296
|
if (!!(process.env.NODE_ENV !== "production")) {
|
|
6249
6297
|
this._styleChildren.delete(comp);
|
|
@@ -6277,6 +6325,7 @@ const modifierGuards = {
|
|
|
6277
6325
|
exact: (e, modifiers) => systemModifiers.some((m) => e[`${m}Key`] && !modifiers.includes(m))
|
|
6278
6326
|
};
|
|
6279
6327
|
const withModifiers = (fn, modifiers) => {
|
|
6328
|
+
if (!fn) return fn;
|
|
6280
6329
|
const cache = fn._withMods || (fn._withMods = {});
|
|
6281
6330
|
const cacheKey = modifiers.join(".");
|
|
6282
6331
|
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
|
|
@@ -6383,9 +6432,9 @@ function normalizeContainer(container) {
|
|
|
6383
6432
|
}
|
|
6384
6433
|
|
|
6385
6434
|
//#endregion
|
|
6386
|
-
//#region ../../node_modules/.pnpm/vue@3.5.
|
|
6435
|
+
//#region ../../node_modules/.pnpm/vue@3.5.28_typescript@5.9.3/node_modules/vue/dist/vue.runtime.esm-bundler.js
|
|
6387
6436
|
/**
|
|
6388
|
-
* vue v3.5.
|
|
6437
|
+
* vue v3.5.28
|
|
6389
6438
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
6390
6439
|
* @license MIT
|
|
6391
6440
|
**/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitejs/devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-alpha.
|
|
4
|
+
"version": "0.0.0-alpha.32",
|
|
5
5
|
"description": "Vite DevTools",
|
|
6
6
|
"author": "VoidZero Inc.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"birpc": "^4.0.0",
|
|
45
45
|
"cac": "^6.7.14",
|
|
46
46
|
"h3": "^1.15.5",
|
|
47
|
-
"immer": "^11.1.
|
|
47
|
+
"immer": "^11.1.4",
|
|
48
48
|
"launch-editor": "^2.12.0",
|
|
49
49
|
"mlly": "^1.8.0",
|
|
50
50
|
"obug": "^2.1.1",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"sirv": "^3.0.2",
|
|
55
55
|
"tinyexec": "^1.0.2",
|
|
56
56
|
"ws": "^8.19.0",
|
|
57
|
-
"@vitejs/devtools-
|
|
58
|
-
"@vitejs/devtools-
|
|
59
|
-
"@vitejs/devtools-
|
|
57
|
+
"@vitejs/devtools-kit": "0.0.0-alpha.32",
|
|
58
|
+
"@vitejs/devtools-rpc": "0.0.0-alpha.32",
|
|
59
|
+
"@vitejs/devtools-rolldown": "0.0.0-alpha.32"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@clack/prompts": "^1.0.0",
|
|
@@ -64,15 +64,15 @@
|
|
|
64
64
|
"@xterm/addon-fit": "^0.11.0",
|
|
65
65
|
"@xterm/xterm": "^6.0.0",
|
|
66
66
|
"dompurify": "^3.3.1",
|
|
67
|
-
"tsdown": "^0.20.
|
|
67
|
+
"tsdown": "^0.20.3",
|
|
68
68
|
"typescript": "^5.9.3",
|
|
69
69
|
"unplugin-vue": "^7.1.1",
|
|
70
70
|
"unplugin-vue-router": "^0.19.2",
|
|
71
|
-
"vite": "^8.0.0-beta.
|
|
72
|
-
"vue": "^3.5.
|
|
71
|
+
"vite": "^8.0.0-beta.14",
|
|
72
|
+
"vue": "^3.5.28",
|
|
73
73
|
"vue-router": "^5.0.2",
|
|
74
74
|
"vue-tsc": "^3.2.4",
|
|
75
|
-
"@vitejs/devtools-rolldown": "0.0.0-alpha.
|
|
75
|
+
"@vitejs/devtools-rolldown": "0.0.0-alpha.32"
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
78
|
"build": "pnpm build:js && pnpm build:standalone",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{c as e,m as t,n}from"./index-DWC0UjCz.js";var r={};function i(n,r){return t(),e(`div`,null,` Logs // TODO: `)}var a=n(r,[[`render`,i]]);export{a as default};
|