mirror of
https://github.com/purocean/yn.git
synced 2026-08-29 01:21:05 +08:00
chore: upgrade vue to 3.4.35
This commit is contained in:
+14
-15
@@ -94,25 +94,24 @@
|
||||
"@types/turndown": "^5.0.0",
|
||||
"@types/uuid": "^8.3.4",
|
||||
"@types/yargs": "^15.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
||||
"@typescript-eslint/parser": "^6.16.0",
|
||||
"@vitejs/plugin-vue": "^4.5.0",
|
||||
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
||||
"@vue/compiler-sfc": "^3.3.13",
|
||||
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
||||
"@typescript-eslint/parser": "^7.18.0",
|
||||
"@vitejs/plugin-vue": "^5.1.2",
|
||||
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
||||
"@vue/compiler-sfc": "^3.4.35",
|
||||
"@vue/eslint-config-standard": "^8.0.1",
|
||||
"@vue/eslint-config-typescript": "^12.0.0",
|
||||
"@vue/eslint-config-typescript": "^13.0.0",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"canvas-confetti": "^1.6.0",
|
||||
"crypto-js": "^4.2.0",
|
||||
"dom-to-image": "^2.6.0",
|
||||
"electron": "28.3.3",
|
||||
"electron-builder": "^23.6.0",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-standard": "^5.0.0",
|
||||
"eslint-plugin-vue": "^9.19.2",
|
||||
"eslint-plugin-promise": "^7.0.0",
|
||||
"eslint-plugin-vue": "^9.27.0",
|
||||
"filenamify": "^5.1.0",
|
||||
"front-matter": "^4.0.2",
|
||||
"husky": "^8.0.1",
|
||||
@@ -144,14 +143,14 @@
|
||||
"ts-jest": "^29.1.1",
|
||||
"ts-node": "^10.9.2",
|
||||
"turndown": "^7.2.0",
|
||||
"typedoc": "^0.25.4",
|
||||
"typescript": "^4.9.5",
|
||||
"typedoc": "^0.26.5",
|
||||
"typescript": "^5.5.4",
|
||||
"utility-types": "^3.10.0",
|
||||
"viewerjs": "^1.11.6",
|
||||
"vite": "^4.5.3",
|
||||
"vue": "^3.3.13",
|
||||
"vite": "^5.3.5",
|
||||
"vue": "^3.4.35",
|
||||
"vue-router": "^4.0.0-0",
|
||||
"vue-tsc": "^1.8.26",
|
||||
"vue-tsc": "^2.0.29",
|
||||
"xterm": "^4.18.0",
|
||||
"xterm-addon-fit": "^0.5.0",
|
||||
"xterm-theme": "^1.1.0"
|
||||
|
||||
@@ -61,7 +61,7 @@ export function getActionHandler <T extends string> (name: T): ActionHandler<T>
|
||||
const action = getAction(name)
|
||||
if (action) {
|
||||
if (!(action.when && !action.when())) {
|
||||
result = (action.handler)?.(...args)
|
||||
result = (action.handler)?.apply(null, args)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"moduleResolution": "node",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"jsxImportSource": "vue",
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
|
||||
Reference in New Issue
Block a user