From 2235d9d7a815d6f554132b0d02fc173745c7b3f3 Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Thu, 17 Nov 2022 22:11:13 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=88=A0=E9=99=A4=20`@vitejs/plugin-l?= =?UTF-8?q?egacy`=EF=BC=8C`vue3`=20=E6=97=A0=E6=B3=95=E9=80=9A=E8=BF=87?= =?UTF-8?q?=E4=BB=BB=E4=BD=95=E5=B7=A5=E5=85=B7=E4=BD=BF=E5=85=B6=E6=94=AF?= =?UTF-8?q?=E6=8C=81`ie`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 3 - .env.staging | 3 - CHANGELOG.en_US.md | 1 - CHANGELOG.md | 1 - CHANGELOG.zh_CN.md | 1 - build/index.ts | 1 - build/plugins.ts | 9 - package.json | 11 +- pnpm-lock.yaml | 514 +++++++++++++++++++++------------------------ types/global.d.ts | 1 - vite.config.ts | 11 +- 11 files changed, 248 insertions(+), 308 deletions(-) diff --git a/.env.production b/.env.production index cf1b262da..84e60861e 100644 --- a/.env.production +++ b/.env.production @@ -4,9 +4,6 @@ VITE_PUBLIC_PATH = / # 线上环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数") VITE_ROUTER_HISTORY = "hash" -# 是否为打包后的文件提供传统浏览器兼容性支持 支持 true 不支持 false -VITE_LEGACY = false - # 是否在打包时使用cdn替换本地库 替换 true 不替换 false VITE_CDN = false diff --git a/.env.staging b/.env.staging index 64e2df99f..f03769997 100644 --- a/.env.staging +++ b/.env.staging @@ -7,9 +7,6 @@ VITE_PUBLIC_PATH = / # 预发布环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数") VITE_ROUTER_HISTORY = "hash" -# 是否为打包后的文件提供传统浏览器兼容性支持 支持 true 不支持 false -VITE_LEGACY = false - # 是否在打包时使用cdn替换本地库 替换 true 不替换 false VITE_CDN = true diff --git a/CHANGELOG.en_US.md b/CHANGELOG.en_US.md index ee835eaf0..e2f362e0b 100644 --- a/CHANGELOG.en_US.md +++ b/CHANGELOG.en_US.md @@ -282,7 +282,6 @@ - Optimize the tab page to bring a better interactive experience - Routing title supports direct writing in Chinese, which can be separated from internationalization - Route history mode is read from env and supports base parameter -- Packaged files provide traditional browser compatibility support, configure VITE_LEGACY to true # 2.6.0(2021-11-10) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee835eaf0..e2f362e0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -282,7 +282,6 @@ - Optimize the tab page to bring a better interactive experience - Routing title supports direct writing in Chinese, which can be separated from internationalization - Route history mode is read from env and supports base parameter -- Packaged files provide traditional browser compatibility support, configure VITE_LEGACY to true # 2.6.0(2021-11-10) diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index 4e81ede06..7b3884afd 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -282,7 +282,6 @@ - 优化标签页,带来更好的交互体验 - 路由 title 支持直接写中文,可脱离国际化 - 路由历史模式从 env 读取并支持 base 参数 -- 打包后的文件提供传统浏览器兼容性支持,配置 VITE_LEGACY 为 true # 2.6.0(2021-11-10) diff --git a/build/index.ts b/build/index.ts index fb3fe4a39..2805485b9 100644 --- a/build/index.ts +++ b/build/index.ts @@ -5,7 +5,6 @@ const warpperEnv = (envConf: Recordable): ViteEnv => { VITE_PORT: 8848, VITE_PUBLIC_PATH: "", VITE_ROUTER_HISTORY: "", - VITE_LEGACY: false, VITE_CDN: false, VITE_COMPRESSION: "none" }; diff --git a/build/plugins.ts b/build/plugins.ts index 94319dca7..c46134963 100644 --- a/build/plugins.ts +++ b/build/plugins.ts @@ -3,7 +3,6 @@ import { resolve } from "path"; import vue from "@vitejs/plugin-vue"; import { viteBuildInfo } from "./info"; import svgLoader from "vite-svg-loader"; -import legacy from "@vitejs/plugin-legacy"; import vueJsx from "@vitejs/plugin-vue-jsx"; import VueMacros from "unplugin-vue-macros/vite"; import { viteMockServe } from "vite-plugin-mock"; @@ -16,7 +15,6 @@ import { genScssMultipleScopeVars } from "../src/layout/theme"; export function getPluginsList( command: string, - VITE_LEGACY: boolean, VITE_CDN: boolean, VITE_COMPRESSION: ViteCompression ) { @@ -65,13 +63,6 @@ export function getPluginsList( `, logger: false }), - // 是否为打包后的文件提供传统浏览器兼容性支持 - VITE_LEGACY - ? legacy({ - targets: ["ie >= 11"], - additionalLegacyPolyfills: ["regenerator-runtime/runtime"] - }) - : null, // 打包分析 lifecycle === "report" ? visualizer({ open: true, brotliSize: true, filename: "report.html" }) diff --git a/package.json b/package.json index 3fbddc566..d26e136c3 100644 --- a/package.json +++ b/package.json @@ -107,9 +107,8 @@ "@types/qrcode": "^1.4.2", "@types/qs": "^6.9.7", "@types/sortablejs": "^1.13.0", - "@typescript-eslint/eslint-plugin": "^5.42.1", - "@typescript-eslint/parser": "^5.42.1", - "@vitejs/plugin-legacy": "^2.3.1", + "@typescript-eslint/eslint-plugin": "^5.43.0", + "@typescript-eslint/parser": "^5.43.0", "@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue-jsx": "^2.1.1", "@vue/eslint-config-prettier": "^7.0.0", @@ -141,10 +140,10 @@ "stylelint-config-recommended": "^9.0.0", "stylelint-config-standard": "^29.0.0", "stylelint-order": "^5.0.0", - "tailwindcss": "^3.2.2", + "tailwindcss": "^3.2.4", "terser": "^5.15.1", - "typescript": "^4.8.4", - "unplugin-vue-macros": "^0.16.2", + "typescript": "^4.9.3", + "unplugin-vue-macros": "^0.16.3", "vite": "3.1.8", "vite-plugin-cdn-import": "^0.3.5", "vite-plugin-compression": "^0.5.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7bb5f9a33..ce1b28429 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -33,9 +33,8 @@ specifiers: "@types/qrcode": ^1.4.2 "@types/qs": ^6.9.7 "@types/sortablejs": ^1.13.0 - "@typescript-eslint/eslint-plugin": ^5.42.1 - "@typescript-eslint/parser": ^5.42.1 - "@vitejs/plugin-legacy": ^2.3.1 + "@typescript-eslint/eslint-plugin": ^5.43.0 + "@typescript-eslint/parser": ^5.43.0 "@vitejs/plugin-vue": ^3.2.0 "@vitejs/plugin-vue-jsx": ^2.1.1 "@vue/eslint-config-prettier": ^7.0.0 @@ -97,11 +96,11 @@ specifiers: stylelint-config-standard: ^29.0.0 stylelint-order: ^5.0.0 swiper: ^8.4.4 - tailwindcss: ^3.2.2 + tailwindcss: ^3.2.4 terser: ^5.15.1 typeit: ^8.7.0 - typescript: ^4.8.4 - unplugin-vue-macros: ^0.16.2 + typescript: ^4.9.3 + unplugin-vue-macros: ^0.16.3 v-contextmenu: 3.0.0 vite: 3.1.8 vite-plugin-cdn-import: ^0.3.5 @@ -128,16 +127,16 @@ specifiers: dependencies: "@amap/amap-jsapi-loader": 1.0.1 "@ctrl/tinycolor": 3.4.1 - "@logicflow/core": 1.1.30 - "@logicflow/extension": 1.1.30 + "@logicflow/core": 1.1.31 + "@logicflow/extension": 1.1.31 "@pureadmin/components": 1.1.0_vue@3.2.45 "@pureadmin/descriptions": 1.1.1_element-plus@2.2.21 "@pureadmin/table": 1.2.0_element-plus@2.2.21 - "@pureadmin/utils": 1.6.5_aotapuqn7htzdjltsyimavekky + "@pureadmin/utils": 1.6.6_aotapuqn7htzdjltsyimavekky "@vueuse/core": 9.5.0_vue@3.2.45 "@vueuse/motion": 2.0.0-beta.12_vue@3.2.45 - "@wangeditor/editor": 5.1.22 - "@wangeditor/editor-for-vue": 5.1.12_t2ii5hulyo3m2u5etopmb55t5e + "@wangeditor/editor": 5.1.23 + "@wangeditor/editor-for-vue": 5.1.12_3apfu3xbp6awzuex7ed3sbrv6y animate.css: 4.1.1 axios: 1.1.3 china-area-data: 5.0.1 @@ -157,7 +156,7 @@ dependencies: mockjs: 1.1.0 nprogress: 0.2.0 path: 0.12.7 - pinia: 2.0.23_zwu2zepfy3m6u2gunxlolp35gi + pinia: 2.0.24_mgnvym7yiazkylwwogi5r767ue qrcode: 1.5.1 qs: 6.11.0 resize-observer-polyfill: 1.5.1 @@ -177,7 +176,7 @@ dependencies: vuedraggable: 4.1.0_vue@3.2.45 vxe-table: 4.3.5_vue@3.2.45+xe-utils@3.5.7 xe-utils: 3.5.7 - xgplayer: 2.32.1 + xgplayer: 2.32.2 xlsx: 0.18.5 devDependencies: @@ -197,7 +196,7 @@ devDependencies: "@pureadmin/theme": 2.4.0 "@types/element-resize-detector": 1.1.3 "@types/js-cookie": 3.0.2 - "@types/lodash": 4.14.188 + "@types/lodash": 4.14.189 "@types/lodash-es": 4.17.6 "@types/mockjs": 1.0.7 "@types/node": 18.11.9 @@ -205,13 +204,12 @@ devDependencies: "@types/qrcode": 1.5.0 "@types/qs": 6.9.7 "@types/sortablejs": 1.15.0 - "@typescript-eslint/eslint-plugin": 5.42.1_2udltptbznfmezdozpdoa2aemq - "@typescript-eslint/parser": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - "@vitejs/plugin-legacy": 2.3.1_terser@5.15.1+vite@3.1.8 + "@typescript-eslint/eslint-plugin": 5.43.0_wze2rj5tow7zwqpgbdx2buoy3m + "@typescript-eslint/parser": 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y "@vitejs/plugin-vue": 3.2.0_vite@3.1.8+vue@3.2.45 "@vitejs/plugin-vue-jsx": 2.1.1_vite@3.1.8+vue@3.2.45 "@vue/eslint-config-prettier": 7.0.0_mbd4zptqpjbepwpyh2zbtslqey - "@vue/eslint-config-typescript": 11.0.2_ykuth4hqtpqqhzrv7pgjq6rjby + "@vue/eslint-config-typescript": 11.0.2_25kohlulmtiau2kyupevrx53qe "@vue/runtime-core": 3.2.45 autoprefixer: 10.4.13_postcss@8.4.19 cloc: 2.10.0 @@ -233,15 +231,15 @@ devDependencies: rollup-plugin-visualizer: 5.8.3 sass: 1.56.1 sass-loader: 13.2.0_sass@1.56.1 - stylelint: 14.14.1 - stylelint-config-html: 1.1.0_a4i6jbpfaxelx4fvjhtlgvxx6i - stylelint-config-prettier: 9.0.4_stylelint@14.14.1 - stylelint-config-recommended: 9.0.0_stylelint@14.14.1 - stylelint-config-standard: 29.0.0_stylelint@14.14.1 - stylelint-order: 5.0.0_stylelint@14.14.1 + stylelint: 14.15.0 + stylelint-config-html: 1.1.0_qendsqix7hqecpnpx4fjs6qry4 + stylelint-config-prettier: 9.0.4_stylelint@14.15.0 + stylelint-config-recommended: 9.0.0_stylelint@14.15.0 + stylelint-config-standard: 29.0.0_stylelint@14.15.0 + stylelint-order: 5.0.0_stylelint@14.15.0 tailwindcss: 3.2.4_postcss@8.4.19 terser: 5.15.1 - typescript: 4.8.4 + typescript: 4.9.3 unplugin-vue-macros: 0.16.3_33e425fbdcno4preplio4kvzwe vite: 3.1.8_sass@1.56.1+terser@5.15.1 vite-plugin-cdn-import: 0.3.5 @@ -250,7 +248,7 @@ devDependencies: vite-plugin-remove-console: 1.3.0 vite-svg-loader: 3.6.0 vue-eslint-parser: 9.1.0_eslint@8.27.0 - vue-tsc: 1.0.9_typescript@4.8.4 + vue-tsc: 1.0.9_typescript@4.9.3 packages: /@amap/amap-jsapi-loader/1.0.1: @@ -643,14 +641,6 @@ packages: regenerator-runtime: 0.13.10 dev: false - /@babel/standalone/7.20.4: - resolution: - { - integrity: sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw== - } - engines: { node: ">=6.9.0" } - dev: true - /@babel/template/7.18.10: resolution: { @@ -788,12 +778,12 @@ packages: "@commitlint/execute-rule": 13.2.0 "@commitlint/resolve-extends": 13.2.0 "@commitlint/types": 13.2.0 - "@endemolshinegroup/cosmiconfig-typescript-loader": 3.0.2_ollydpoxwdashhemwxkyttgehy + "@endemolshinegroup/cosmiconfig-typescript-loader": 3.0.2_wepmgm2w27yjszvmvb4ibcenaq chalk: 4.1.2 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 lodash: 4.17.21 resolve-from: 5.0.0 - typescript: 4.8.4 + typescript: 4.9.3 dev: true /@commitlint/message/13.2.0: @@ -917,7 +907,7 @@ packages: vue: 3.2.45 dev: false - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_ollydpoxwdashhemwxkyttgehy: + /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_wepmgm2w27yjszvmvb4ibcenaq: resolution: { integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA== @@ -926,19 +916,19 @@ packages: peerDependencies: cosmiconfig: ">=6" dependencies: - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 lodash.get: 4.4.2 make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.8.4 + ts-node: 9.1.1_typescript@4.9.3 tslib: 2.4.1 transitivePeerDependencies: - typescript dev: true - /@esbuild/android-arm/0.15.13: + /@esbuild/android-arm/0.15.14: resolution: { - integrity: sha512-RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw== + integrity: sha512-+Rb20XXxRGisNu2WmNKk+scpanb7nL5yhuI1KR9wQFiC43ddPj/V1fmNyzlFC9bKiG4mYzxW7egtoHVcynr+OA== } engines: { node: ">=12" } cpu: [arm] @@ -947,10 +937,10 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.15.13: + /@esbuild/linux-loong64/0.15.14: resolution: { - integrity: sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag== + integrity: sha512-eQi9rosGNVQFJyJWV0HCA5WZae/qWIQME7s8/j8DMvnylfBv62Pbu+zJ2eUDqNf2O4u3WB+OEXyfkpBoe194sg== } engines: { node: ">=12" } cpu: [loong64] @@ -969,7 +959,7 @@ packages: ajv: 6.12.6 debug: 4.3.4 espree: 9.4.1 - globals: 13.17.0 + globals: 13.18.0 ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -987,20 +977,20 @@ packages: engines: { node: ">=14.0.0", npm: ">=6.0.0" } dev: true - /@floating-ui/core/1.0.1: + /@floating-ui/core/1.0.2: resolution: { - integrity: sha512-bO37brCPfteXQfFY0DyNDGB3+IMe4j150KFQcgJ5aBP295p9nBGeHEs/p0czrRbtlHq4Px/yoPXO/+dOCcF4uA== + integrity: sha512-Skfy0YS3NJ5nV9us0uuPN0HDk1Q4edljaOhRBJGDWs9EBa7ZVMYBHRFlhLvvmwEoaIM9BlH6QJFn9/uZg0bACg== } dev: false - /@floating-ui/dom/1.0.4: + /@floating-ui/dom/1.0.6: resolution: { - integrity: sha512-maYJRv+sAXTy4K9mzdv0JPyNW5YPVHrqtY90tEdI6XNpuLOP26Ci2pfwPsKBA/Wh4Z3FX5sUrtUFTdMYj9v+ug== + integrity: sha512-kt/tg1oip9OAH1xjCTcx1OpcUpu9rjDw3GKJ/rEhUqhO7QyJWfrHU0DpLTNsH67+JyFL5Kv9X1utsXwKFVtyEQ== } dependencies: - "@floating-ui/core": 1.0.1 + "@floating-ui/core": 1.0.2 dev: false /@humanwhocodes/config-array/0.11.7: @@ -1123,10 +1113,10 @@ packages: vue: 3.2.45 dev: true - /@intlify/bundle-utils/3.2.1_vue-i18n@9.2.2: + /@intlify/bundle-utils/3.4.0_vue-i18n@9.2.2: resolution: { - integrity: sha512-rf4cLBOnbqmpXVcCdcYHilZpMt1m82syh3WLBJlZvGxN2KkH9HeHVH4+bnibF/SDXCHNh6lM6wTpS/qw+PkcMg== + integrity: sha512-2UQkqiSAOSPEHMGWlybqWm4G2K0X+FyYho5AwXz6QklSX1EY5EDmOSxZmwscn2qmKBnp6OYsme5kUrnN9xrWzQ== } engines: { node: ">= 12" } peerDependencies: @@ -1221,7 +1211,7 @@ packages: vue-i18n: optional: true dependencies: - "@intlify/bundle-utils": 3.2.1_vue-i18n@9.2.2 + "@intlify/bundle-utils": 3.4.0_vue-i18n@9.2.2 "@intlify/shared": 9.3.0-beta.7 "@rollup/pluginutils": 4.2.1 debug: 4.3.4 @@ -1309,26 +1299,26 @@ packages: "@jridgewell/sourcemap-codec": 1.4.14 dev: true - /@logicflow/core/1.1.30: + /@logicflow/core/1.1.31: resolution: { - integrity: sha512-42W7L8BwkVWOXk9Sp4NOWcdciB/1wnV3PbOTZRttPXA44ObB64rXHa/CdWvTzQdw6sITr1LCL2C3Y2z7eeoroQ== + integrity: sha512-TQYJoxhqSzWBvw/NkI5hNZ8WkfS7JDLrvp56EU/OYo6Nbusj2n8/ya8XaMM50+GXqnp6+38t3RAGCC9Dk9cmhA== } dependencies: - "@types/mousetrap": 1.6.10 + "@types/mousetrap": 1.6.11 mousetrap: 1.6.5 - preact: 10.11.2 + preact: 10.11.3 dev: false - /@logicflow/extension/1.1.30: + /@logicflow/extension/1.1.31: resolution: { - integrity: sha512-zgKSMz14gpeTWA50HCmDibq0NUqdBDRS6EO7iAlx7G7ZCnuM2T0zdpf8x6yAdZRNl6ewsd1ckgoNJGZ3IZUy8A== + integrity: sha512-MUDdP7Anf3OmIEVmJTlIH8e5h2yrdqlwWYCDjDoh9R1IOfzR4wCvEiH4HgOkadTsGtfaihFRyFnPIYT1cu7oUA== } dependencies: - "@logicflow/core": 1.1.30 + "@logicflow/core": 1.1.31 ids: 1.0.0 - preact: 10.11.2 + preact: 10.11.3 dev: false /@nodelib/fs.scandir/2.1.5: @@ -1410,10 +1400,10 @@ packages: string-hash: 1.1.3 dev: true - /@pureadmin/utils/1.6.5_aotapuqn7htzdjltsyimavekky: + /@pureadmin/utils/1.6.6_aotapuqn7htzdjltsyimavekky: resolution: { - integrity: sha512-FxMRtKFWxkAcWBqjiI9uxo/3EnObFwAegSXEim5VFrEHogG177skpRj+Z51jfCAdCdwimDrZUdkuEn5c2yqIOA== + integrity: sha512-BQbfN1TjamRtiyiun2sL1nxc0KEsOpqfAuXW+TVdpyoKkY+B5qiMDggpsH98fhs8yoY2Kd3E2g1WXb8VzD9mdw== } peerDependencies: dayjs: "*" @@ -1550,12 +1540,12 @@ packages: integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg== } dependencies: - "@types/lodash": 4.14.188 + "@types/lodash": 4.14.189 - /@types/lodash/4.14.188: + /@types/lodash/4.14.189: resolution: { - integrity: sha512-zmEmF5OIM3rb7SbLCFYoQhO4dGt2FRM9AMkxvA3LaADOF1n8in/zGJlWji9fmafLoNyz+FoL6FE0SLtGIArD7w== + integrity: sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA== } /@types/minimatch/3.0.5: @@ -1579,10 +1569,10 @@ packages: } dev: true - /@types/mousetrap/1.6.10: + /@types/mousetrap/1.6.11: resolution: { - integrity: sha512-MY9CcBNaR304SnweEZgJB/YsNcaeJk/7v6gtDi3yPCCVdszN9+BIqOVlsTMqUHMmdxM4DObve+0g0SBmr5EHdw== + integrity: sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ== } dev: false @@ -1666,10 +1656,10 @@ packages: integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ== } - /@typescript-eslint/eslint-plugin/5.42.1_2udltptbznfmezdozpdoa2aemq: + /@typescript-eslint/eslint-plugin/5.43.0_wze2rj5tow7zwqpgbdx2buoy3m: resolution: { - integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg== + integrity: sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1680,26 +1670,26 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/parser": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/type-utils": 5.42.1_rmayb2veg2btbq6mbmnyivgasy - "@typescript-eslint/utils": 5.42.1_rmayb2veg2btbq6mbmnyivgasy + "@typescript-eslint/parser": 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y + "@typescript-eslint/scope-manager": 5.43.0 + "@typescript-eslint/type-utils": 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y + "@typescript-eslint/utils": 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y debug: 4.3.4 eslint: 8.27.0 ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.42.1_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/parser/5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y: resolution: { - integrity: sha512-kAV+NiNBWVQDY9gDJDToTE/NO8BHi4f6b7zTsVAJoTkmB/zlfOpiEVBzHOKtlgTndCKe8vj9F/PuolemZSh50Q== + integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1709,31 +1699,31 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 + "@typescript-eslint/scope-manager": 5.43.0 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/typescript-estree": 5.43.0_typescript@4.9.3 debug: 4.3.4 eslint: 8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.42.1: + /@typescript-eslint/scope-manager/5.43.0: resolution: { - integrity: sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ== + integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/visitor-keys": 5.42.1 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/visitor-keys": 5.43.0 dev: true - /@typescript-eslint/type-utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/type-utils/5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y: resolution: { - integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg== + integrity: sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1743,28 +1733,28 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 - "@typescript-eslint/utils": 5.42.1_rmayb2veg2btbq6mbmnyivgasy + "@typescript-eslint/typescript-estree": 5.43.0_typescript@4.9.3 + "@typescript-eslint/utils": 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y debug: 4.3.4 eslint: 8.27.0 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.42.1: + /@typescript-eslint/types/5.43.0: resolution: { - integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA== + integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@typescript-eslint/typescript-estree/5.42.1_typescript@4.8.4: + /@typescript-eslint/typescript-estree/5.43.0_typescript@4.9.3: resolution: { - integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw== + integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1773,22 +1763,22 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/visitor-keys": 5.42.1 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/visitor-keys": 5.43.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/utils/5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y: resolution: { - integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ== + integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1796,9 +1786,9 @@ packages: dependencies: "@types/json-schema": 7.0.11 "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/typescript-estree": 5.42.1_typescript@4.8.4 + "@typescript-eslint/scope-manager": 5.43.0 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/typescript-estree": 5.43.0_typescript@4.9.3 eslint: 8.27.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.27.0 @@ -1808,14 +1798,14 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.42.1: + /@typescript-eslint/visitor-keys/5.43.0: resolution: { - integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A== + integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/types": 5.43.0 eslint-visitor-keys: 3.3.0 dev: true @@ -1842,7 +1832,7 @@ packages: mime-match: 1.0.2 namespace-emitter: 2.0.1 nanoid: 3.3.4 - preact: 10.11.2 + preact: 10.11.3 dev: false /@uppy/store-default/2.1.1: @@ -1875,25 +1865,6 @@ packages: nanoid: 3.3.4 dev: false - /@vitejs/plugin-legacy/2.3.1_terser@5.15.1+vite@3.1.8: - resolution: - { - integrity: sha512-J5KaGBlSt2tEYPVjM/C8dA6DkRzkFkbPe+Xb4IX5G+XOV5OGbVAfkMjKywdrkO3gGynO8S98i71Lmsff4cWkCQ== - } - engines: { node: ^14.18.0 || >=16.0.0 } - peerDependencies: - terser: ^5.4.0 - vite: ^3.0.0 - dependencies: - "@babel/standalone": 7.20.4 - core-js: 3.26.0 - magic-string: 0.26.7 - regenerator-runtime: 0.13.10 - systemjs: 6.13.0 - terser: 5.15.1 - vite: 3.1.8_sass@1.56.1+terser@5.15.1 - dev: true - /@vitejs/plugin-vue-jsx/2.1.1_vite@3.1.8+vue@3.2.45: resolution: { @@ -2251,7 +2222,7 @@ packages: prettier: 2.7.1 dev: true - /@vue/eslint-config-typescript/11.0.2_ykuth4hqtpqqhzrv7pgjq6rjby: + /@vue/eslint-config-typescript/11.0.2_25kohlulmtiau2kyupevrx53qe: resolution: { integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw== @@ -2265,11 +2236,11 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/eslint-plugin": 5.42.1_2udltptbznfmezdozpdoa2aemq - "@typescript-eslint/parser": 5.42.1_rmayb2veg2btbq6mbmnyivgasy + "@typescript-eslint/eslint-plugin": 5.43.0_wze2rj5tow7zwqpgbdx2buoy3m + "@typescript-eslint/parser": 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y eslint: 8.27.0 eslint-plugin-vue: 9.7.0_eslint@8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 vue-eslint-parser: 9.1.0_eslint@8.27.0 transitivePeerDependencies: - supports-color @@ -2430,10 +2401,10 @@ packages: - "@vue/composition-api" - vue - /@wangeditor/basic-modules/1.1.6_o6rq7lyzv5eg7j3353bh3hudbm: + /@wangeditor/basic-modules/1.1.7_j7icpicfeimtkldwmemjnpdjs4: resolution: { - integrity: sha512-wckcFm/kEAHpTn7dTmN0+7POFoygqt9bZdNHJUkdKObXtAerml8RdjrkHRcwJFCkSELbrNK63fvkwS0+FsabfA== + integrity: sha512-cY9CPkLJaqF05STqfpZKWG4LpxTMeGSIIF1fHvfm/mz+JXatCagjdkbxdikOuKYlxDdeqvOeBmsUBItufDLXZg== } peerDependencies: "@wangeditor/core": 1.x @@ -2443,7 +2414,7 @@ packages: slate: ^0.72.0 snabbdom: ^3.1.0 dependencies: - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e dom7: 3.0.0 is-url: 1.2.4 lodash.throttle: 4.1.1 @@ -2452,7 +2423,7 @@ packages: snabbdom: 3.5.1 dev: false - /@wangeditor/code-highlight/1.0.3_l7btiqc6jwjbtk5j6zx52mrhj4: + /@wangeditor/code-highlight/1.0.3_tztyh2vh7kwzpeloifaekkk3my: resolution: { integrity: sha512-iazHwO14XpCuIWJNTQTikqUhGKyqj+dUNWJ9288Oym9M2xMVHvnsOmDU2sgUDWVy+pOLojReMPgXCsvvNlOOhw== @@ -2463,17 +2434,17 @@ packages: slate: ^0.72.0 snabbdom: ^3.1.0 dependencies: - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e dom7: 3.0.0 prismjs: 1.29.0 slate: 0.72.8 snabbdom: 3.5.1 dev: false - /@wangeditor/core/1.1.18_qokc4m5r26t2nkvzejrgzroa7e: + /@wangeditor/core/1.1.19_qokc4m5r26t2nkvzejrgzroa7e: resolution: { - integrity: sha512-GZsW/8tm2Hc2hZKX8BZP9PO7vTZll9YXsOt+jKck3D2bj9nk4T0FZymuE5fq9ZHdo+MwLiXBHXS/D1SIGlVnGQ== + integrity: sha512-KevkB47+7GhVszyYF2pKGKtCSj/YzmClsD03C3zTt+9SR2XWT5T0e3yQqg8baZpcMvkjs1D8Dv4fk8ok/UaS2Q== } peerDependencies: "@uppy/core": ^2.1.1 @@ -2513,7 +2484,7 @@ packages: snabbdom: 3.5.1 dev: false - /@wangeditor/editor-for-vue/5.1.12_t2ii5hulyo3m2u5etopmb55t5e: + /@wangeditor/editor-for-vue/5.1.12_3apfu3xbp6awzuex7ed3sbrv6y: resolution: { integrity: sha512-0Ds3D8I+xnpNWezAeO7HmPRgTfUxHLMd9JKcIw+QzvSmhC5xUHbpCcLU+KLmeBKTR/zffnS5GQo6qi3GhTMJWQ== @@ -2522,25 +2493,25 @@ packages: "@wangeditor/editor": ">=5.1.0" vue: ^3.0.5 dependencies: - "@wangeditor/editor": 5.1.22 + "@wangeditor/editor": 5.1.23 vue: 3.2.45 dev: false - /@wangeditor/editor/5.1.22: + /@wangeditor/editor/5.1.23: resolution: { - integrity: sha512-Bg+NakUvg6+UvkRT/xD9a0zMhPy/4kwhiv8Hp93csa4dg2u/dlZORRTjJCWaWmVK82PrtBG3VAcuw3rPdQCfag== + integrity: sha512-0RxfeVTuK1tktUaPROnCoFfaHVJpRAIE2zdS0mpP+vq1axVQpLjM8+fCvKzqYIkH0Pg+C+44hJpe3VVroSkEuQ== } dependencies: "@uppy/core": 2.3.4 "@uppy/xhr-upload": 2.1.3_@uppy+core@2.3.4 - "@wangeditor/basic-modules": 1.1.6_o6rq7lyzv5eg7j3353bh3hudbm - "@wangeditor/code-highlight": 1.0.3_l7btiqc6jwjbtk5j6zx52mrhj4 - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e - "@wangeditor/list-module": 1.0.5_l7btiqc6jwjbtk5j6zx52mrhj4 - "@wangeditor/table-module": 1.1.4_lwgnfhttvljctbijfdv636yew4 - "@wangeditor/upload-image-module": 1.0.2_pknk2k7txbsal4ptocd5fojeuq - "@wangeditor/video-module": 1.1.4_i7nsf6mii7znnnswtj7jlro46u + "@wangeditor/basic-modules": 1.1.7_j7icpicfeimtkldwmemjnpdjs4 + "@wangeditor/code-highlight": 1.0.3_tztyh2vh7kwzpeloifaekkk3my + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/list-module": 1.0.5_tztyh2vh7kwzpeloifaekkk3my + "@wangeditor/table-module": 1.1.4_2dde2uzwslfxq2cqrl35sl4erm + "@wangeditor/upload-image-module": 1.0.2_dwqga4onuah5imhngzkgmw6t5a + "@wangeditor/video-module": 1.1.4_i6gxywmu7tvxmjxypclnjlcil4 dom7: 3.0.0 is-hotkey: 0.2.0 lodash.camelcase: 4.3.0 @@ -2555,7 +2526,7 @@ packages: snabbdom: 3.5.1 dev: false - /@wangeditor/list-module/1.0.5_l7btiqc6jwjbtk5j6zx52mrhj4: + /@wangeditor/list-module/1.0.5_tztyh2vh7kwzpeloifaekkk3my: resolution: { integrity: sha512-uDuYTP6DVhcYf7mF1pTlmNn5jOb4QtcVhYwSSAkyg09zqxI1qBqsfUnveeDeDqIuptSJhkh81cyxi+MF8sEPOQ== @@ -2566,13 +2537,13 @@ packages: slate: ^0.72.0 snabbdom: ^3.1.0 dependencies: - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e dom7: 3.0.0 slate: 0.72.8 snabbdom: 3.5.1 dev: false - /@wangeditor/table-module/1.1.4_lwgnfhttvljctbijfdv636yew4: + /@wangeditor/table-module/1.1.4_2dde2uzwslfxq2cqrl35sl4erm: resolution: { integrity: sha512-5saanU9xuEocxaemGdNi9t8MCDSucnykEC6jtuiT72kt+/Hhh4nERYx1J20OPsTCCdVr7hIyQenFD1iSRkIQ6w== @@ -2586,7 +2557,7 @@ packages: slate: ^0.72.0 snabbdom: ^3.1.0 dependencies: - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e dom7: 3.0.0 lodash.isequal: 4.5.0 lodash.throttle: 4.1.1 @@ -2595,7 +2566,7 @@ packages: snabbdom: 3.5.1 dev: false - /@wangeditor/upload-image-module/1.0.2_pknk2k7txbsal4ptocd5fojeuq: + /@wangeditor/upload-image-module/1.0.2_dwqga4onuah5imhngzkgmw6t5a: resolution: { integrity: sha512-z81lk/v71OwPDYeQDxj6cVr81aDP90aFuywb8nPD6eQeECtOymrqRODjpO6VGvCVxVck8nUxBHtbxKtjgcwyiA== @@ -2612,15 +2583,15 @@ packages: dependencies: "@uppy/core": 2.3.4 "@uppy/xhr-upload": 2.1.3_@uppy+core@2.3.4 - "@wangeditor/basic-modules": 1.1.6_o6rq7lyzv5eg7j3353bh3hudbm - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/basic-modules": 1.1.7_j7icpicfeimtkldwmemjnpdjs4 + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e dom7: 3.0.0 lodash.foreach: 4.5.0 slate: 0.72.8 snabbdom: 3.5.1 dev: false - /@wangeditor/video-module/1.1.4_i7nsf6mii7znnnswtj7jlro46u: + /@wangeditor/video-module/1.1.4_i6gxywmu7tvxmjxypclnjlcil4: resolution: { integrity: sha512-ZdodDPqKQrgx3IwWu4ZiQmXI8EXZ3hm2/fM6E3t5dB8tCaIGWQZhmqd6P5knfkRAd3z2+YRSRbxOGfoRSp/rLg== @@ -2636,7 +2607,7 @@ packages: dependencies: "@uppy/core": 2.3.4 "@uppy/xhr-upload": 2.1.3_@uppy+core@2.3.4 - "@wangeditor/core": 1.1.18_qokc4m5r26t2nkvzejrgzroa7e + "@wangeditor/core": 1.1.19_qokc4m5r26t2nkvzejrgzroa7e dom7: 3.0.0 nanoid: 3.3.4 slate: 0.72.8 @@ -2762,10 +2733,10 @@ packages: uri-js: 4.4.1 dev: true - /ajv/8.11.0: + /ajv/8.11.2: resolution: { - integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg== } dependencies: fast-deep-equal: 3.1.3 @@ -3459,17 +3430,18 @@ packages: } dev: true - /core-js/3.26.0: + /core-js/3.26.1: resolution: { - integrity: sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw== + integrity: sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA== } requiresBuild: true + dev: false - /cosmiconfig/7.0.1: + /cosmiconfig/7.1.0: resolution: { - integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== } engines: { node: ">=10" } dependencies: @@ -4010,7 +3982,7 @@ packages: integrity: sha512-A5zeqo0us1mzAi+bvQsluex2V4BSEf/2a4FuZzkluJWsoqNCIexRVnxcgWVRl/8HaAK9nLGLnkAb//Xox+eLOg== } dependencies: - core-js: 3.26.0 + core-js: 3.26.1 element-plus: 2.2.21_vue@3.2.45 vue: 3.2.45 transitivePeerDependencies: @@ -4034,9 +4006,9 @@ packages: dependencies: "@ctrl/tinycolor": 3.4.1 "@element-plus/icons-vue": 2.0.10_vue@3.2.45 - "@floating-ui/dom": 1.0.4 + "@floating-ui/dom": 1.0.6 "@popperjs/core": /@sxzz/popperjs-es/2.11.7 - "@types/lodash": 4.14.188 + "@types/lodash": 4.14.189 "@types/lodash-es": 4.17.6 "@vueuse/core": 9.5.0_vue@3.2.45 async-validator: 4.2.5 @@ -4159,10 +4131,10 @@ packages: ext: 1.7.0 dev: false - /esbuild-android-64/0.15.13: + /esbuild-android-64/0.15.14: resolution: { - integrity: sha512-yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g== + integrity: sha512-HuilVIb4rk9abT4U6bcFdU35UHOzcWVGLSjEmC58OVr96q5UiRqzDtWjPlCMugjhgUGKEs8Zf4ueIvYbOStbIg== } engines: { node: ">=12" } cpu: [x64] @@ -4171,10 +4143,10 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.15.13: + /esbuild-android-arm64/0.15.14: resolution: { - integrity: sha512-TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w== + integrity: sha512-/QnxRVxsR2Vtf3XottAHj7hENAMW2wCs6S+OZcAbc/8nlhbAL/bCQRCVD78VtI5mdwqWkVi3wMqM94kScQCgqg== } engines: { node: ">=12" } cpu: [arm64] @@ -4183,10 +4155,10 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.15.13: + /esbuild-darwin-64/0.15.14: resolution: { - integrity: sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg== + integrity: sha512-ToNuf1uifu8hhwWvoZJGCdLIX/1zpo8cOGnT0XAhDQXiKOKYaotVNx7pOVB1f+wHoWwTLInrOmh3EmA7Fd+8Vg== } engines: { node: ">=12" } cpu: [x64] @@ -4195,10 +4167,10 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.15.13: + /esbuild-darwin-arm64/0.15.14: resolution: { - integrity: sha512-U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A== + integrity: sha512-KgGP+y77GszfYJgceO0Wi/PiRtYo5y2Xo9rhBUpxTPaBgWDJ14gqYN0+NMbu+qC2fykxXaipHxN4Scaj9tUS1A== } engines: { node: ">=12" } cpu: [arm64] @@ -4207,10 +4179,10 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.15.13: + /esbuild-freebsd-64/0.15.14: resolution: { - integrity: sha512-whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA== + integrity: sha512-xr0E2n5lyWw3uFSwwUXHc0EcaBDtsal/iIfLioflHdhAe10KSctV978Te7YsfnsMKzcoGeS366+tqbCXdqDHQA== } engines: { node: ">=12" } cpu: [x64] @@ -4219,10 +4191,10 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.15.13: + /esbuild-freebsd-arm64/0.15.14: resolution: { - integrity: sha512-6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q== + integrity: sha512-8XH96sOQ4b1LhMlO10eEWOjEngmZ2oyw3pW4o8kvBcpF6pULr56eeYVP5radtgw54g3T8nKHDHYEI5AItvskZg== } engines: { node: ">=12" } cpu: [arm64] @@ -4231,10 +4203,10 @@ packages: dev: true optional: true - /esbuild-linux-32/0.15.13: + /esbuild-linux-32/0.15.14: resolution: { - integrity: sha512-VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w== + integrity: sha512-6ssnvwaTAi8AzKN8By2V0nS+WF5jTP7SfuK6sStGnDP7MCJo/4zHgM9oE1eQTS2jPmo3D673rckuCzRlig+HMA== } engines: { node: ">=12" } cpu: [ia32] @@ -4243,10 +4215,10 @@ packages: dev: true optional: true - /esbuild-linux-64/0.15.13: + /esbuild-linux-64/0.15.14: resolution: { - integrity: sha512-rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A== + integrity: sha512-ONySx3U0wAJOJuxGUlXBWxVKFVpWv88JEv0NZ6NlHknmDd1yCbf4AEdClSgLrqKQDXYywmw4gYDvdLsS6z0hcw== } engines: { node: ">=12" } cpu: [x64] @@ -4255,10 +4227,10 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.15.13: + /esbuild-linux-arm/0.15.14: resolution: { - integrity: sha512-Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ== + integrity: sha512-D2LImAIV3QzL7lHURyCHBkycVFbKwkDb1XEUWan+2fb4qfW7qAeUtul7ZIcIwFKZgPcl+6gKZmvLgPSj26RQ2Q== } engines: { node: ">=12" } cpu: [arm] @@ -4267,10 +4239,10 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.15.13: + /esbuild-linux-arm64/0.15.14: resolution: { - integrity: sha512-alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ== + integrity: sha512-kle2Ov6a1e5AjlHlMQl1e+c4myGTeggrRzArQFmWp6O6JoqqB9hT+B28EW4tjFWgV/NxUq46pWYpgaWXsXRPAg== } engines: { node: ">=12" } cpu: [arm64] @@ -4279,10 +4251,10 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.15.13: + /esbuild-linux-mips64le/0.15.14: resolution: { - integrity: sha512-47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A== + integrity: sha512-FVdMYIzOLXUq+OE7XYKesuEAqZhmAIV6qOoYahvUp93oXy0MOVTP370ECbPfGXXUdlvc0TNgkJa3YhEwyZ6MRA== } engines: { node: ">=12" } cpu: [mips64el] @@ -4291,10 +4263,10 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.15.13: + /esbuild-linux-ppc64le/0.15.14: resolution: { - integrity: sha512-z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA== + integrity: sha512-2NzH+iuzMDA+jjtPjuIz/OhRDf8tzbQ1tRZJI//aT25o1HKc0reMMXxKIYq/8nSHXiJSnYV4ODzTiv45s+h73w== } engines: { node: ">=12" } cpu: [ppc64] @@ -4303,10 +4275,10 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.15.13: + /esbuild-linux-riscv64/0.15.14: resolution: { - integrity: sha512-+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow== + integrity: sha512-VqxvutZNlQxmUNS7Ac+aczttLEoHBJ9e3OYGqnULrfipRvG97qLrAv9EUY9iSrRKBqeEbSvS9bSfstZqwz0T4Q== } engines: { node: ">=12" } cpu: [riscv64] @@ -4315,10 +4287,10 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.15.13: + /esbuild-linux-s390x/0.15.14: resolution: { - integrity: sha512-BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag== + integrity: sha512-+KVHEUshX5n6VP6Vp/AKv9fZIl5kr2ph8EUFmQUJnDpHwcfTSn2AQgYYm0HTBR2Mr4d0Wlr0FxF/Cs5pbFgiOw== } engines: { node: ">=12" } cpu: [s390x] @@ -4327,10 +4299,10 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.15.13: + /esbuild-netbsd-64/0.15.14: resolution: { - integrity: sha512-EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ== + integrity: sha512-6D/dr17piEgevIm1xJfZP2SjB9Z+g8ERhNnBdlZPBWZl+KSPUKLGF13AbvC+nzGh8IxOH2TyTIdRMvKMP0nEzQ== } engines: { node: ">=12" } cpu: [x64] @@ -4339,10 +4311,10 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.15.13: + /esbuild-openbsd-64/0.15.14: resolution: { - integrity: sha512-nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w== + integrity: sha512-rREQBIlMibBetgr2E9Lywt2Qxv2ZdpmYahR4IUlAQ1Efv/A5gYdO0/VIN3iowDbCNTLxp0bb57Vf0LFcffD6kA== } engines: { node: ">=12" } cpu: [x64] @@ -4351,10 +4323,10 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.15.13: + /esbuild-sunos-64/0.15.14: resolution: { - integrity: sha512-jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw== + integrity: sha512-DNVjSp/BY4IfwtdUAvWGIDaIjJXY5KI4uD82+15v6k/w7px9dnaDaJJ2R6Mu+KCgr5oklmFc0KjBjh311Gxl9Q== } engines: { node: ">=12" } cpu: [x64] @@ -4363,10 +4335,10 @@ packages: dev: true optional: true - /esbuild-windows-32/0.15.13: + /esbuild-windows-32/0.15.14: resolution: { - integrity: sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA== + integrity: sha512-pHBWrcA+/oLgvViuG9FO3kNPO635gkoVrRQwe6ZY1S0jdET07xe2toUvQoJQ8KT3/OkxqUasIty5hpuKFLD+eg== } engines: { node: ">=12" } cpu: [ia32] @@ -4375,10 +4347,10 @@ packages: dev: true optional: true - /esbuild-windows-64/0.15.13: + /esbuild-windows-64/0.15.14: resolution: { - integrity: sha512-Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ== + integrity: sha512-CszIGQVk/P8FOS5UgAH4hKc9zOaFo69fe+k1rqgBHx3CSK3Opyk5lwYriIamaWOVjBt7IwEP6NALz+tkVWdFog== } engines: { node: ">=12" } cpu: [x64] @@ -4387,10 +4359,10 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.15.13: + /esbuild-windows-arm64/0.15.14: resolution: { - integrity: sha512-3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg== + integrity: sha512-KW9W4psdZceaS9A7Jsgl4WialOznSURvqX/oHZk3gOP7KbjtHLSsnmSvNdzagGJfxbAe30UVGXRe8q8nDsOSQw== } engines: { node: ">=12" } cpu: [arm64] @@ -4408,37 +4380,37 @@ packages: requiresBuild: true dev: true - /esbuild/0.15.13: + /esbuild/0.15.14: resolution: { - integrity: sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ== + integrity: sha512-pJN8j42fvWLFWwSMG4luuupl2Me7mxciUOsMegKvwCmhEbJ2covUdFnihxm0FMIBV+cbwbtMoHgMCCI+pj1btQ== } engines: { node: ">=12" } hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.15.13 - "@esbuild/linux-loong64": 0.15.13 - esbuild-android-64: 0.15.13 - esbuild-android-arm64: 0.15.13 - esbuild-darwin-64: 0.15.13 - esbuild-darwin-arm64: 0.15.13 - esbuild-freebsd-64: 0.15.13 - esbuild-freebsd-arm64: 0.15.13 - esbuild-linux-32: 0.15.13 - esbuild-linux-64: 0.15.13 - esbuild-linux-arm: 0.15.13 - esbuild-linux-arm64: 0.15.13 - esbuild-linux-mips64le: 0.15.13 - esbuild-linux-ppc64le: 0.15.13 - esbuild-linux-riscv64: 0.15.13 - esbuild-linux-s390x: 0.15.13 - esbuild-netbsd-64: 0.15.13 - esbuild-openbsd-64: 0.15.13 - esbuild-sunos-64: 0.15.13 - esbuild-windows-32: 0.15.13 - esbuild-windows-64: 0.15.13 - esbuild-windows-arm64: 0.15.13 + "@esbuild/android-arm": 0.15.14 + "@esbuild/linux-loong64": 0.15.14 + esbuild-android-64: 0.15.14 + esbuild-android-arm64: 0.15.14 + esbuild-darwin-64: 0.15.14 + esbuild-darwin-arm64: 0.15.14 + esbuild-freebsd-64: 0.15.14 + esbuild-freebsd-arm64: 0.15.14 + esbuild-linux-32: 0.15.14 + esbuild-linux-64: 0.15.14 + esbuild-linux-arm: 0.15.14 + esbuild-linux-arm64: 0.15.14 + esbuild-linux-mips64le: 0.15.14 + esbuild-linux-ppc64le: 0.15.14 + esbuild-linux-riscv64: 0.15.14 + esbuild-linux-s390x: 0.15.14 + esbuild-netbsd-64: 0.15.14 + esbuild-openbsd-64: 0.15.14 + esbuild-sunos-64: 0.15.14 + esbuild-windows-32: 0.15.14 + esbuild-windows-64: 0.15.14 + esbuild-windows-arm64: 0.15.14 dev: true /escalade/3.1.1: @@ -4639,7 +4611,7 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.17.0 + globals: 13.18.0 grapheme-splitter: 1.0.4 ignore: 5.2.0 import-fresh: 3.3.0 @@ -5218,10 +5190,10 @@ packages: engines: { node: ">=4" } dev: true - /globals/13.17.0: + /globals/13.18.0: resolution: { - integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A== } engines: { node: ">=8" } dependencies: @@ -5890,7 +5862,7 @@ packages: chalk: 4.1.2 cli-truncate: 2.1.0 commander: 7.2.0 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 debug: 4.3.4 enquirer: 2.3.6 execa: 5.1.1 @@ -6750,10 +6722,10 @@ packages: engines: { node: ">=0.10.0" } dev: true - /pinia/2.0.23_zwu2zepfy3m6u2gunxlolp35gi: + /pinia/2.0.24_mgnvym7yiazkylwwogi5r767ue: resolution: { - integrity: sha512-N15hFf4o5STrxpNrib1IEb1GOArvPYf1zPvQVRGOO1G1d74Ak0J0lVyalX/SmrzdT4Q0nlEFjbURsmBmIGUR5Q== + integrity: sha512-DDLd4Iphyc+6PYYYbx7jkb6WP9gecgu9bz9huyB5rb7CdJI3DhzYiZI+/Ih8MLewRrP9DSpslF/BgSNrJtZU7A== } peerDependencies: "@vue/composition-api": ^1.4.0 @@ -6766,7 +6738,7 @@ packages: optional: true dependencies: "@vue/devtools-api": 6.4.5 - typescript: 4.8.4 + typescript: 4.9.3 vue: 3.2.45 vue-demi: 0.13.11_vue@3.2.45 dev: false @@ -7330,10 +7302,10 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /preact/10.11.2: + /preact/10.11.3: resolution: { - integrity: sha512-skAwGDFmgxhq1DCBHke/9e12ewkhc7WYwjuhHB8HHS8zkdtITXLRmUMTeol2ldxvLwYtwbFeifZ9uDDWuyL4Iw== + integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg== } dev: false @@ -7551,6 +7523,7 @@ packages: { integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== } + dev: false /regexpp/3.2.0: resolution: @@ -8210,7 +8183,7 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /stylelint-config-html/1.1.0_a4i6jbpfaxelx4fvjhtlgvxx6i: + /stylelint-config-html/1.1.0_qendsqix7hqecpnpx4fjs6qry4: resolution: { integrity: sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ== @@ -8221,10 +8194,10 @@ packages: stylelint: ">=14.0.0" dependencies: postcss-html: 1.5.0 - stylelint: 14.14.1 + stylelint: 14.15.0 dev: true - /stylelint-config-prettier/9.0.4_stylelint@14.14.1: + /stylelint-config-prettier/9.0.4_stylelint@14.15.0: resolution: { integrity: sha512-38nIGTGpFOiK5LjJ8Ma1yUgpKENxoKSOhbDNSemY7Ep0VsJoXIW9Iq/2hSt699oB9tReynfWicTAoIHiq8Rvbg== @@ -8234,10 +8207,10 @@ packages: peerDependencies: stylelint: ">=11.0.0" dependencies: - stylelint: 14.14.1 + stylelint: 14.15.0 dev: true - /stylelint-config-recommended/9.0.0_stylelint@14.14.1: + /stylelint-config-recommended/9.0.0_stylelint@14.15.0: resolution: { integrity: sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ== @@ -8245,10 +8218,10 @@ packages: peerDependencies: stylelint: ^14.10.0 dependencies: - stylelint: 14.14.1 + stylelint: 14.15.0 dev: true - /stylelint-config-standard/29.0.0_stylelint@14.14.1: + /stylelint-config-standard/29.0.0_stylelint@14.15.0: resolution: { integrity: sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg== @@ -8256,11 +8229,11 @@ packages: peerDependencies: stylelint: ^14.14.0 dependencies: - stylelint: 14.14.1 - stylelint-config-recommended: 9.0.0_stylelint@14.14.1 + stylelint: 14.15.0 + stylelint-config-recommended: 9.0.0_stylelint@14.15.0 dev: true - /stylelint-order/5.0.0_stylelint@14.14.1: + /stylelint-order/5.0.0_stylelint@14.15.0: resolution: { integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw== @@ -8270,13 +8243,13 @@ packages: dependencies: postcss: 8.4.19 postcss-sorting: 7.0.1_postcss@8.4.19 - stylelint: 14.14.1 + stylelint: 14.15.0 dev: true - /stylelint/14.14.1: + /stylelint/14.15.0: resolution: { - integrity: sha512-Jnftu+lSD8cSpcV/+Z2nfgfgFpTIS1FcujezXPngtoIQ6wtwutL22MsNE0dJuMiM1h1790g2qIjAyUZCMrX4sw== + integrity: sha512-JOgDAo5QRsqiOZPZO+B9rKJvBm64S0xasbuRPAbPs6/vQDgDCnZLIiw6XcAS6GQKk9k1sBWR6rmH3Mfj8OknKg== } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } hasBin: true @@ -8284,7 +8257,7 @@ packages: "@csstools/selector-specificity": 2.0.2_45y636a2vqremknoajyxd5nkzy balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 css-functions-list: 3.1.0 debug: 4.3.4 fast-glob: 3.2.12 @@ -8397,13 +8370,6 @@ packages: ssr-window: 4.0.2 dev: false - /systemjs/6.13.0: - resolution: - { - integrity: sha512-P3cgh2bpaPvAO2NE3uRp/n6hmk4xPX4DQf+UzTlCAycssKdqhp6hjw+ENWe+aUS7TogKRFtptMosTSFeC6R55g== - } - dev: true - /table/6.8.1: resolution: { @@ -8411,7 +8377,7 @@ packages: } engines: { node: ">=10.0.0" } dependencies: - ajv: 8.11.0 + ajv: 8.11.2 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 @@ -8532,7 +8498,7 @@ packages: engines: { node: ">=8" } dev: true - /ts-node/9.1.1_typescript@4.8.4: + /ts-node/9.1.1_typescript@4.9.3: resolution: { integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg== @@ -8547,7 +8513,7 @@ packages: diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.21 - typescript: 4.8.4 + typescript: 4.9.3 yn: 3.1.1 dev: true @@ -8579,7 +8545,7 @@ packages: } dev: true - /tsutils/3.21.0_typescript@4.8.4: + /tsutils/3.21.0_typescript@4.9.3: resolution: { integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== @@ -8589,7 +8555,7 @@ packages: typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" dependencies: tslib: 1.14.1 - typescript: 4.8.4 + typescript: 4.9.3 dev: true /type-check/0.4.0: @@ -8664,10 +8630,10 @@ packages: requiresBuild: true dev: false - /typescript/4.8.4: + /typescript/4.9.3: resolution: { - integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== + integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA== } engines: { node: ">=4.2.0" } hasBin: true @@ -8973,7 +8939,7 @@ packages: terser: optional: true dependencies: - esbuild: 0.15.13 + esbuild: 0.15.14 postcss: 8.4.19 resolve: 1.22.1 rollup: 2.78.1 @@ -9103,7 +9069,7 @@ packages: he: 1.2.0 dev: true - /vue-tsc/1.0.9_typescript@4.8.4: + /vue-tsc/1.0.9_typescript@4.9.3: resolution: { integrity: sha512-vRmHD1K6DmBymNhoHjQy/aYKTRQNLGOu2/ESasChG9Vy113K6CdP0NlhR0bzgFJfv2eFB9Ez/9L5kIciUajBxQ== @@ -9114,7 +9080,7 @@ packages: dependencies: "@volar/vue-language-core": 1.0.9 "@volar/vue-typescript": 1.0.9 - typescript: 4.8.4 + typescript: 4.9.3 dev: true /vue-types/4.2.1_vue@3.2.45: @@ -9324,10 +9290,10 @@ packages: generate-source-map: 0.0.5 dev: false - /xgplayer/2.32.1: + /xgplayer/2.32.2: resolution: { - integrity: sha512-jUs6108INqnzEn3DTGre6pHW3KroM2w0VKuJNEvOIkoD2oUB+MW5ZZ0PsIwijX/oQRpmvq422CUgo4uqXVidEQ== + integrity: sha512-VWK8Hp5K3Fs5YoHadpyCw2zwuiOimRjkPo2PSJZPYKj59VNnL9oLruZp6cy86LHoAgWELRIQj6Nmw5SkQNByWQ== } hasBin: true dependencies: diff --git a/types/global.d.ts b/types/global.d.ts index 8af7d27d5..95cc36c08 100644 --- a/types/global.d.ts +++ b/types/global.d.ts @@ -87,7 +87,6 @@ declare global { VITE_PORT: number; VITE_PUBLIC_PATH: string; VITE_ROUTER_HISTORY: string; - VITE_LEGACY: boolean; VITE_CDN: boolean; VITE_COMPRESSION: ViteCompression; } diff --git a/vite.config.ts b/vite.config.ts index 64ef0b8d8..977671b59 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -26,13 +26,8 @@ const __APP_INFO__ = { }; export default ({ command, mode }: ConfigEnv): UserConfigExport => { - const { - VITE_CDN, - VITE_PORT, - VITE_LEGACY, - VITE_COMPRESSION, - VITE_PUBLIC_PATH - } = warpperEnv(loadEnv(mode, root)); + const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } = + warpperEnv(loadEnv(mode, root)); return { base: VITE_PUBLIC_PATH, root, @@ -49,7 +44,7 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => { // 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy proxy: {} }, - plugins: getPluginsList(command, VITE_LEGACY, VITE_CDN, VITE_COMPRESSION), + plugins: getPluginsList(command, VITE_CDN, VITE_COMPRESSION), optimizeDeps: { include: ["pinia", "vue-i18n", "lodash-es", "@vueuse/core", "dayjs"], exclude: ["@pureadmin/theme/dist/browser-utils"]