更新依赖
parent
2aad2c6b8a
commit
bfc07b2a97
File diff suppressed because it is too large
Load Diff
20
package.json
20
package.json
|
@ -212,11 +212,11 @@
|
|||
"@babel/preset-env": "^7.20.2",
|
||||
"@babel/preset-typescript": "^7.18.6",
|
||||
"@types/better-sqlite3": "^7.6.3",
|
||||
"@types/needle": "^2.5.3",
|
||||
"@types/needle": "^3.2.0",
|
||||
"@types/tunnel": "^0.0.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.46.0",
|
||||
"@typescript-eslint/parser": "^5.46.0",
|
||||
"@volar/vue-language-plugin-pug": "^1.0.12",
|
||||
"@typescript-eslint/eslint-plugin": "^5.47.0",
|
||||
"@typescript-eslint/parser": "^5.47.0",
|
||||
"@volar/vue-language-plugin-pug": "^1.0.16",
|
||||
"babel-loader": "^9.1.0",
|
||||
"browserslist": "^4.21.4",
|
||||
"chalk": "^4.1.2",
|
||||
|
@ -224,18 +224,18 @@
|
|||
"copy-webpack-plugin": "^11.0.0",
|
||||
"core-js": "^3.26.1",
|
||||
"cross-env": "^7.0.3",
|
||||
"css-loader": "^6.7.2",
|
||||
"css-loader": "^6.7.3",
|
||||
"css-minimizer-webpack-plugin": "^4.2.2",
|
||||
"del": "^6.1.1",
|
||||
"electron": "^19.1.9",
|
||||
"electron-builder": "^24.0.0-alpha.6",
|
||||
"electron-builder": "^24.0.0-alpha.8",
|
||||
"electron-debug": "^3.2.0",
|
||||
"electron-devtools-installer": "^3.2.0",
|
||||
"electron-to-chromium": "^1.4.284",
|
||||
"electron-updater": "^6.0.0-alpha.5",
|
||||
"eslint": "^8.29.0",
|
||||
"electron-updater": "^6.0.0-alpha.6",
|
||||
"eslint": "^8.30.0",
|
||||
"eslint-config-standard": "^17.0.0",
|
||||
"eslint-config-standard-with-typescript": "^23.0.0",
|
||||
"eslint-config-standard-with-typescript": "^24.0.0",
|
||||
"eslint-formatter-friendly": "github:lyswhut/eslint-friendly-formatter#2170d1320e2fad13615a9dcf229669f0bb473a53",
|
||||
"eslint-plugin-html": "^7.1.0",
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
|
@ -248,7 +248,7 @@
|
|||
"less-loader": "^11.1.0",
|
||||
"mini-css-extract-plugin": "^2.7.2",
|
||||
"node-loader": "^2.0.0",
|
||||
"postcss": "^8.4.19",
|
||||
"postcss": "^8.4.20",
|
||||
"postcss-loader": "^7.0.2",
|
||||
"postcss-pxtorem": "^6.0.0",
|
||||
"pug": "^3.0.2",
|
||||
|
|
|
@ -2,7 +2,7 @@ import { reactive, computed } from '@common/utils/vueTools'
|
|||
import defaultSetting from '@common/defaultSetting'
|
||||
import { updateSetting as saveSetting } from '@renderer/utils/ipc'
|
||||
|
||||
export const appSetting = window.lxData.appSetting = reactive<LX.AppSetting>(defaultSetting)
|
||||
export const appSetting = window.lxData.appSetting = reactive<LX.AppSetting>({ ...defaultSetting })
|
||||
|
||||
export const isShowAnimation = computed(() => {
|
||||
return appSetting['common.isShowAnimation']
|
||||
|
|
Loading…
Reference in New Issue