🔧 npm update

This commit is contained in:
2025-04-15 20:50:11 +02:00
parent ce5b9ac0c8
commit 94a90edabd
828 changed files with 256807 additions and 197099 deletions

19
node_modules/vue/dist/vue.cjs.js generated vendored
View File

@@ -1,5 +1,5 @@
/**
* vue v3.4.15
* vue v3.5.13
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
@@ -24,15 +24,7 @@ function _interopNamespaceDefault(e) {
var runtimeDom__namespace = /*#__PURE__*/_interopNamespaceDefault(runtimeDom);
const compileCache = /* @__PURE__ */ new WeakMap();
function getCache(options) {
let c = compileCache.get(options != null ? options : shared.EMPTY_OBJ);
if (!c) {
c = /* @__PURE__ */ Object.create(null);
compileCache.set(options != null ? options : shared.EMPTY_OBJ, c);
}
return c;
}
const compileCache = /* @__PURE__ */ Object.create(null);
function compileToFunction(template, options) {
if (!shared.isString(template)) {
if (template.nodeType) {
@@ -42,9 +34,8 @@ function compileToFunction(template, options) {
return shared.NOOP;
}
}
const key = template;
const cache = getCache(options);
const cached = cache[key];
const key = shared.genCacheKey(template, options);
const cached = compileCache[key];
if (cached) {
return cached;
}
@@ -79,7 +70,7 @@ ${codeFrame}` : message);
}
const render = new Function("Vue", code)(runtimeDom__namespace);
render._rc = true;
return cache[key] = render;
return compileCache[key] = render;
}
runtimeDom.registerRuntimeCompiler(compileToFunction);