🔧 npm update
This commit is contained in:
19
node_modules/vue/dist/vue.cjs.js
generated
vendored
19
node_modules/vue/dist/vue.cjs.js
generated
vendored
@@ -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);
|
||||
|
||||
|
||||
19
node_modules/vue/dist/vue.cjs.prod.js
generated
vendored
19
node_modules/vue/dist/vue.cjs.prod.js
generated
vendored
@@ -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) {
|
||||
@@ -41,9 +33,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;
|
||||
}
|
||||
@@ -65,7 +56,7 @@ function compileToFunction(template, options) {
|
||||
const { code } = compilerDom.compile(template, opts);
|
||||
const render = new Function("Vue", code)(runtimeDom__namespace);
|
||||
render._rc = true;
|
||||
return cache[key] = render;
|
||||
return compileCache[key] = render;
|
||||
}
|
||||
runtimeDom.registerRuntimeCompiler(compileToFunction);
|
||||
|
||||
|
||||
9237
node_modules/vue/dist/vue.esm-browser.js
generated
vendored
9237
node_modules/vue/dist/vue.esm-browser.js
generated
vendored
File diff suppressed because it is too large
Load Diff
14
node_modules/vue/dist/vue.esm-browser.prod.js
generated
vendored
14
node_modules/vue/dist/vue.esm-browser.prod.js
generated
vendored
File diff suppressed because one or more lines are too long
21
node_modules/vue/dist/vue.esm-bundler.js
generated
vendored
21
node_modules/vue/dist/vue.esm-bundler.js
generated
vendored
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* vue v3.4.15
|
||||
* vue v3.5.13
|
||||
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
||||
* @license MIT
|
||||
**/
|
||||
@@ -7,7 +7,7 @@ import * as runtimeDom from '@vue/runtime-dom';
|
||||
import { initCustomFormatter, registerRuntimeCompiler, warn } from '@vue/runtime-dom';
|
||||
export * from '@vue/runtime-dom';
|
||||
import { compile } from '@vue/compiler-dom';
|
||||
import { isString, NOOP, extend, generateCodeFrame, EMPTY_OBJ } from '@vue/shared';
|
||||
import { isString, NOOP, genCacheKey, extend, generateCodeFrame } from '@vue/shared';
|
||||
|
||||
function initDev() {
|
||||
{
|
||||
@@ -18,15 +18,7 @@ function initDev() {
|
||||
if (!!(process.env.NODE_ENV !== "production")) {
|
||||
initDev();
|
||||
}
|
||||
const compileCache = /* @__PURE__ */ new WeakMap();
|
||||
function getCache(options) {
|
||||
let c = compileCache.get(options != null ? options : EMPTY_OBJ);
|
||||
if (!c) {
|
||||
c = /* @__PURE__ */ Object.create(null);
|
||||
compileCache.set(options != null ? options : EMPTY_OBJ, c);
|
||||
}
|
||||
return c;
|
||||
}
|
||||
const compileCache = /* @__PURE__ */ Object.create(null);
|
||||
function compileToFunction(template, options) {
|
||||
if (!isString(template)) {
|
||||
if (template.nodeType) {
|
||||
@@ -36,9 +28,8 @@ function compileToFunction(template, options) {
|
||||
return NOOP;
|
||||
}
|
||||
}
|
||||
const key = template;
|
||||
const cache = getCache(options);
|
||||
const cached = cache[key];
|
||||
const key = genCacheKey(template, options);
|
||||
const cached = compileCache[key];
|
||||
if (cached) {
|
||||
return cached;
|
||||
}
|
||||
@@ -73,7 +64,7 @@ ${codeFrame}` : message);
|
||||
}
|
||||
const render = new Function("Vue", code)(runtimeDom);
|
||||
render._rc = true;
|
||||
return cache[key] = render;
|
||||
return compileCache[key] = render;
|
||||
}
|
||||
registerRuntimeCompiler(compileToFunction);
|
||||
|
||||
|
||||
9106
node_modules/vue/dist/vue.global.js
generated
vendored
9106
node_modules/vue/dist/vue.global.js
generated
vendored
File diff suppressed because it is too large
Load Diff
14
node_modules/vue/dist/vue.global.prod.js
generated
vendored
14
node_modules/vue/dist/vue.global.prod.js
generated
vendored
File diff suppressed because one or more lines are too long
8336
node_modules/vue/dist/vue.runtime.esm-browser.js
generated
vendored
8336
node_modules/vue/dist/vue.runtime.esm-browser.js
generated
vendored
File diff suppressed because it is too large
Load Diff
10
node_modules/vue/dist/vue.runtime.esm-browser.prod.js
generated
vendored
10
node_modules/vue/dist/vue.runtime.esm-browser.prod.js
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/vue/dist/vue.runtime.esm-bundler.js
generated
vendored
2
node_modules/vue/dist/vue.runtime.esm-bundler.js
generated
vendored
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* vue v3.4.15
|
||||
* vue v3.5.13
|
||||
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
||||
* @license MIT
|
||||
**/
|
||||
|
||||
8215
node_modules/vue/dist/vue.runtime.global.js
generated
vendored
8215
node_modules/vue/dist/vue.runtime.global.js
generated
vendored
File diff suppressed because it is too large
Load Diff
10
node_modules/vue/dist/vue.runtime.global.prod.js
generated
vendored
10
node_modules/vue/dist/vue.runtime.global.prod.js
generated
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user