Commit e5b2cc1e982a14af1afb275c9d62bc24ead4fd61
1 parent
7b4fcd2e
chore: update deps
Showing
10 changed files
with
92 additions
and
97 deletions
.env
build/utils.ts
... | ... | @@ -30,7 +30,6 @@ export interface ViteEnv { |
30 | 30 | VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none'; |
31 | 31 | VITE_LEGACY: boolean; |
32 | 32 | VITE_USE_IMAGEMIN: boolean; |
33 | - VITE_DYNAMIC_IMPORT: boolean; | |
34 | 33 | } |
35 | 34 | |
36 | 35 | // Read all environment variable configuration files to process.env | ... | ... |
package.json
... | ... | @@ -53,7 +53,7 @@ |
53 | 53 | "devDependencies": { |
54 | 54 | "@commitlint/cli": "^12.0.1", |
55 | 55 | "@commitlint/config-conventional": "^12.0.1", |
56 | - "@iconify/json": "^1.1.308", | |
56 | + "@iconify/json": "^1.1.310", | |
57 | 57 | "@ls-lint/ls-lint": "^1.9.2", |
58 | 58 | "@purge-icons/generated": "^0.7.0", |
59 | 59 | "@types/crypto-js": "^4.0.1", |
... | ... | @@ -68,8 +68,8 @@ |
68 | 68 | "@types/rollup-plugin-visualizer": "^2.6.0", |
69 | 69 | "@types/sortablejs": "^1.10.6", |
70 | 70 | "@types/yargs": "^16.0.0", |
71 | - "@typescript-eslint/eslint-plugin": "^4.15.2", | |
72 | - "@typescript-eslint/parser": "^4.15.2", | |
71 | + "@typescript-eslint/eslint-plugin": "^4.16.1", | |
72 | + "@typescript-eslint/parser": "^4.16.1", | |
73 | 73 | "@vitejs/plugin-legacy": "^1.3.1", |
74 | 74 | "@vitejs/plugin-vue": "^1.1.5", |
75 | 75 | "@vitejs/plugin-vue-jsx": "^1.1.2", |
... | ... | @@ -100,15 +100,15 @@ |
100 | 100 | "stylelint-config-standard": "^20.0.0", |
101 | 101 | "stylelint-order": "^4.1.0", |
102 | 102 | "ts-node": "^9.1.1", |
103 | - "typescript": "4.1.5", | |
103 | + "typescript": "4.2.2", | |
104 | 104 | "vite": "^2.0.4", |
105 | - "vite-plugin-compression": "^0.2.2", | |
106 | - "vite-plugin-html": "^2.0.2", | |
107 | - "vite-plugin-imagemin": "^0.2.8", | |
105 | + "vite-plugin-compression": "^0.2.3", | |
106 | + "vite-plugin-html": "^2.0.3", | |
107 | + "vite-plugin-imagemin": "^0.2.9", | |
108 | 108 | "vite-plugin-mock": "^2.1.5", |
109 | 109 | "vite-plugin-purge-icons": "^0.7.0", |
110 | 110 | "vite-plugin-pwa": "^0.5.6", |
111 | - "vite-plugin-style-import": "^0.7.5", | |
111 | + "vite-plugin-style-import": "^0.7.6", | |
112 | 112 | "vite-plugin-theme": "^0.4.8", |
113 | 113 | "vite-plugin-windicss": "0.6.2", |
114 | 114 | "vue-eslint-parser": "^7.5.0", | ... | ... |
src/components/Basic/src/BasicArrow.vue
... | ... | @@ -9,7 +9,6 @@ |
9 | 9 | </template> |
10 | 10 | <script lang="ts"> |
11 | 11 | import { defineComponent, computed } from 'vue'; |
12 | - import { RightOutlined } from '@ant-design/icons-vue'; | |
13 | 12 | |
14 | 13 | import { useDesign } from '/@/hooks/web/useDesign'; |
15 | 14 | |
... | ... | @@ -19,7 +18,7 @@ |
19 | 18 | |
20 | 19 | export default defineComponent({ |
21 | 20 | name: 'BasicArrow', |
22 | - components: { RightOutlined, Icon }, | |
21 | + components: { Icon }, | |
23 | 22 | props: { |
24 | 23 | // Expand contract, expand by default |
25 | 24 | expand: propTypes.bool, | ... | ... |
src/router/helper/routeHelper.ts
... | ... | @@ -18,12 +18,7 @@ let dynamicViewsModules: Record< |
18 | 18 | |
19 | 19 | // 动态引入 |
20 | 20 | function asyncImportRoute(routes: AppRouteRecordRaw[] | undefined) { |
21 | - // TODO It may be a bug in Vite. When the conditions are not established, the dynamically imported files will still be packaged in. | |
22 | - if (!__DYNAMIC_IMPORT__) { | |
23 | - dynamicViewsModules = {}; | |
24 | - } else { | |
25 | - dynamicViewsModules = dynamicViewsModules || import.meta.glob('../../views/**/*.{vue,tsx}'); | |
26 | - } | |
21 | + dynamicViewsModules = dynamicViewsModules || import.meta.glob('../../views/**/*.{vue,tsx}'); | |
27 | 22 | |
28 | 23 | if (!routes) return; |
29 | 24 | routes.forEach((item) => { | ... | ... |
src/views/demo/feat/ws/index.vue
... | ... | @@ -54,7 +54,7 @@ |
54 | 54 | </template> |
55 | 55 | <script lang="ts"> |
56 | 56 | import { defineComponent, reactive, watchEffect, computed, toRefs } from 'vue'; |
57 | - import { Alert, Tag, Input } from 'ant-design-vue'; | |
57 | + import { Tag, Input } from 'ant-design-vue'; | |
58 | 58 | |
59 | 59 | import { PageWrapper } from '/@/components/Page'; |
60 | 60 | |
... | ... | @@ -66,7 +66,6 @@ |
66 | 66 | PageWrapper, |
67 | 67 | [Input.name]: Input, |
68 | 68 | InputTextArea: Input.TextArea, |
69 | - Alert, | |
70 | 69 | Tag, |
71 | 70 | }, |
72 | 71 | setup() { | ... | ... |
test/websocket-server/README.md
0 → 100644
types/window.d.ts
vite.config.ts
... | ... | @@ -21,14 +21,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { |
21 | 21 | // The boolean type read by loadEnv is a string. This function can be converted to boolean type |
22 | 22 | const viteEnv = wrapperEnv(env); |
23 | 23 | |
24 | - const { | |
25 | - VITE_PORT, | |
26 | - VITE_PUBLIC_PATH, | |
27 | - VITE_PROXY, | |
28 | - VITE_DROP_CONSOLE, | |
29 | - VITE_LEGACY, | |
30 | - VITE_DYNAMIC_IMPORT, | |
31 | - } = viteEnv; | |
24 | + const { VITE_PORT, VITE_PUBLIC_PATH, VITE_PROXY, VITE_DROP_CONSOLE, VITE_LEGACY } = viteEnv; | |
32 | 25 | |
33 | 26 | const isBuild = command === 'build'; |
34 | 27 | |
... | ... | @@ -75,7 +68,6 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { |
75 | 68 | define: { |
76 | 69 | // setting vue-i18-next |
77 | 70 | // Suppress warning |
78 | - __DYNAMIC_IMPORT__: VITE_DYNAMIC_IMPORT, | |
79 | 71 | __VUE_I18N_LEGACY_API__: false, |
80 | 72 | __VUE_I18N_FULL_INSTALL__: false, |
81 | 73 | __INTLIFY_PROD_DEVTOOLS__: false, | ... | ... |
yarn.lock
... | ... | @@ -1117,10 +1117,10 @@ |
1117 | 1117 | dependencies: |
1118 | 1118 | cross-fetch "^3.0.6" |
1119 | 1119 | |
1120 | -"@iconify/json@^1.1.308": | |
1121 | - version "1.1.308" | |
1122 | - resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.308.tgz#162210182c14af4eb217f19e1a1707b787aca2aa" | |
1123 | - integrity sha512-zoVnvr5A1tpuTCzuw5EvRcWYV5rcmWLGLhEzg9+SuRAXWyT2st0ShF8hYbeHzm+MJHhJWodHVfsTu2DkshMX2g== | |
1120 | +"@iconify/json@^1.1.310": | |
1121 | + version "1.1.310" | |
1122 | + resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.310.tgz#4180cfdafbf4e218b8f78abae3434089bcb6ccf6" | |
1123 | + integrity sha512-gLCuqulJPC2ly3upqPILOA1nV2fYfb99Dx64hLvneUb0r22opL+TfMfl352AjSZTFMGKV6ve8pNSAOS5gvY3vg== | |
1124 | 1124 | |
1125 | 1125 | "@intlify/core-base@9.0.0": |
1126 | 1126 | version "9.0.0" |
... | ... | @@ -1517,13 +1517,13 @@ |
1517 | 1517 | dependencies: |
1518 | 1518 | "@types/yargs-parser" "*" |
1519 | 1519 | |
1520 | -"@typescript-eslint/eslint-plugin@^4.15.2": | |
1521 | - version "4.15.2" | |
1522 | - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.2.tgz#981b26b4076c62a5a55873fbef3fe98f83360c61" | |
1523 | - integrity sha512-uiQQeu9tWl3f1+oK0yoAv9lt/KXO24iafxgQTkIYO/kitruILGx3uH+QtIAHqxFV+yIsdnJH+alel9KuE3J15Q== | |
1520 | +"@typescript-eslint/eslint-plugin@^4.16.1": | |
1521 | + version "4.16.1" | |
1522 | + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.16.1.tgz#2caf6a79dd19c3853b8d39769a27fccb24e4e651" | |
1523 | + integrity sha512-SK777klBdlkUZpZLC1mPvyOWk9yAFCWmug13eAjVQ4/Q1LATE/NbcQL1xDHkptQkZOLnPmLUA1Y54m8dqYwnoQ== | |
1524 | 1524 | dependencies: |
1525 | - "@typescript-eslint/experimental-utils" "4.15.2" | |
1526 | - "@typescript-eslint/scope-manager" "4.15.2" | |
1525 | + "@typescript-eslint/experimental-utils" "4.16.1" | |
1526 | + "@typescript-eslint/scope-manager" "4.16.1" | |
1527 | 1527 | debug "^4.1.1" |
1528 | 1528 | functional-red-black-tree "^1.0.1" |
1529 | 1529 | lodash "^4.17.15" |
... | ... | @@ -1531,60 +1531,60 @@ |
1531 | 1531 | semver "^7.3.2" |
1532 | 1532 | tsutils "^3.17.1" |
1533 | 1533 | |
1534 | -"@typescript-eslint/experimental-utils@4.15.2": | |
1535 | - version "4.15.2" | |
1536 | - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.2.tgz#5efd12355bd5b535e1831282e6cf465b9a71cf36" | |
1537 | - integrity sha512-Fxoshw8+R5X3/Vmqwsjc8nRO/7iTysRtDqx6rlfLZ7HbT8TZhPeQqbPjTyk2RheH3L8afumecTQnUc9EeXxohQ== | |
1534 | +"@typescript-eslint/experimental-utils@4.16.1": | |
1535 | + version "4.16.1" | |
1536 | + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.16.1.tgz#da7a396dc7d0e01922acf102b76efff17320b328" | |
1537 | + integrity sha512-0Hm3LSlMYFK17jO4iY3un1Ve9x1zLNn4EM50Lia+0EV99NdbK+cn0er7HC7IvBA23mBg3P+8dUkMXy4leL33UQ== | |
1538 | 1538 | dependencies: |
1539 | 1539 | "@types/json-schema" "^7.0.3" |
1540 | - "@typescript-eslint/scope-manager" "4.15.2" | |
1541 | - "@typescript-eslint/types" "4.15.2" | |
1542 | - "@typescript-eslint/typescript-estree" "4.15.2" | |
1540 | + "@typescript-eslint/scope-manager" "4.16.1" | |
1541 | + "@typescript-eslint/types" "4.16.1" | |
1542 | + "@typescript-eslint/typescript-estree" "4.16.1" | |
1543 | 1543 | eslint-scope "^5.0.0" |
1544 | 1544 | eslint-utils "^2.0.0" |
1545 | 1545 | |
1546 | -"@typescript-eslint/parser@^4.15.2": | |
1547 | - version "4.15.2" | |
1548 | - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.2.tgz#c804474321ef76a3955aec03664808f0d6e7872e" | |
1549 | - integrity sha512-SHeF8xbsC6z2FKXsaTb1tBCf0QZsjJ94H6Bo51Y1aVEZ4XAefaw5ZAilMoDPlGghe+qtq7XdTiDlGfVTOmvA+Q== | |
1546 | +"@typescript-eslint/parser@^4.16.1": | |
1547 | + version "4.16.1" | |
1548 | + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.16.1.tgz#3bbd3234dd3c5b882b2bcd9899bc30e1e1586d2a" | |
1549 | + integrity sha512-/c0LEZcDL5y8RyI1zLcmZMvJrsR6SM1uetskFkoh3dvqDKVXPsXI+wFB/CbVw7WkEyyTKobC1mUNp/5y6gRvXg== | |
1550 | 1550 | dependencies: |
1551 | - "@typescript-eslint/scope-manager" "4.15.2" | |
1552 | - "@typescript-eslint/types" "4.15.2" | |
1553 | - "@typescript-eslint/typescript-estree" "4.15.2" | |
1551 | + "@typescript-eslint/scope-manager" "4.16.1" | |
1552 | + "@typescript-eslint/types" "4.16.1" | |
1553 | + "@typescript-eslint/typescript-estree" "4.16.1" | |
1554 | 1554 | debug "^4.1.1" |
1555 | 1555 | |
1556 | -"@typescript-eslint/scope-manager@4.15.2": | |
1557 | - version "4.15.2" | |
1558 | - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.2.tgz#5725bda656995960ae1d004bfd1cd70320f37f4f" | |
1559 | - integrity sha512-Zm0tf/MSKuX6aeJmuXexgdVyxT9/oJJhaCkijv0DvJVT3ui4zY6XYd6iwIo/8GEZGy43cd7w1rFMiCLHbRzAPQ== | |
1556 | +"@typescript-eslint/scope-manager@4.16.1": | |
1557 | + version "4.16.1" | |
1558 | + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.16.1.tgz#244e2006bc60cfe46987e9987f4ff49c9e3f00d5" | |
1559 | + integrity sha512-6IlZv9JaurqV0jkEg923cV49aAn8V6+1H1DRfhRcvZUrptQ+UtSKHb5kwTayzOYTJJ/RsYZdcvhOEKiBLyc0Cw== | |
1560 | 1560 | dependencies: |
1561 | - "@typescript-eslint/types" "4.15.2" | |
1562 | - "@typescript-eslint/visitor-keys" "4.15.2" | |
1561 | + "@typescript-eslint/types" "4.16.1" | |
1562 | + "@typescript-eslint/visitor-keys" "4.16.1" | |
1563 | 1563 | |
1564 | -"@typescript-eslint/types@4.15.2": | |
1565 | - version "4.15.2" | |
1566 | - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.2.tgz#04acf3a2dc8001a88985291744241e732ef22c60" | |
1567 | - integrity sha512-r7lW7HFkAarfUylJ2tKndyO9njwSyoy6cpfDKWPX6/ctZA+QyaYscAHXVAfJqtnY6aaTwDYrOhp+ginlbc7HfQ== | |
1564 | +"@typescript-eslint/types@4.16.1": | |
1565 | + version "4.16.1" | |
1566 | + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.16.1.tgz#5ba2d3e38b1a67420d2487519e193163054d9c15" | |
1567 | + integrity sha512-nnKqBwMgRlhzmJQF8tnFDZWfunXmJyuXj55xc8Kbfup4PbkzdoDXZvzN8//EiKR27J6vUSU8j4t37yUuYPiLqA== | |
1568 | 1568 | |
1569 | -"@typescript-eslint/typescript-estree@4.15.2": | |
1570 | - version "4.15.2" | |
1571 | - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.2.tgz#c2f7a1e94f3428d229d5ecff3ead6581ee9b62fa" | |
1572 | - integrity sha512-cGR8C2g5SPtHTQvAymEODeqx90pJHadWsgTtx6GbnTWKqsg7yp6Eaya9nFzUd4KrKhxdYTTFBiYeTPQaz/l8bw== | |
1569 | +"@typescript-eslint/typescript-estree@4.16.1": | |
1570 | + version "4.16.1" | |
1571 | + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.16.1.tgz#c2fc46b05a48fbf8bbe8b66a63f0a9ba04b356f1" | |
1572 | + integrity sha512-m8I/DKHa8YbeHt31T+UGd/l8Kwr0XCTCZL3H4HMvvLCT7HU9V7yYdinTOv1gf/zfqNeDcCgaFH2BMsS8x6NvJg== | |
1573 | 1573 | dependencies: |
1574 | - "@typescript-eslint/types" "4.15.2" | |
1575 | - "@typescript-eslint/visitor-keys" "4.15.2" | |
1574 | + "@typescript-eslint/types" "4.16.1" | |
1575 | + "@typescript-eslint/visitor-keys" "4.16.1" | |
1576 | 1576 | debug "^4.1.1" |
1577 | 1577 | globby "^11.0.1" |
1578 | 1578 | is-glob "^4.0.1" |
1579 | 1579 | semver "^7.3.2" |
1580 | 1580 | tsutils "^3.17.1" |
1581 | 1581 | |
1582 | -"@typescript-eslint/visitor-keys@4.15.2": | |
1583 | - version "4.15.2" | |
1584 | - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.2.tgz#3d1c7979ce75bf6acf9691109bd0d6b5706192b9" | |
1585 | - integrity sha512-TME1VgSb7wTwgENN5KVj4Nqg25hP8DisXxNBojM4Nn31rYaNDIocNm5cmjOFfh42n7NVERxWrDFoETO/76ePyg== | |
1582 | +"@typescript-eslint/visitor-keys@4.16.1": | |
1583 | + version "4.16.1" | |
1584 | + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.16.1.tgz#d7571fb580749fae621520deeb134370bbfc7293" | |
1585 | + integrity sha512-s/aIP1XcMkEqCNcPQtl60ogUYjSM8FU2mq1O7y5cFf3Xcob1z1iXWNB6cC43Op+NGRTFgGolri6s8z/efA9i1w== | |
1586 | 1586 | dependencies: |
1587 | - "@typescript-eslint/types" "4.15.2" | |
1587 | + "@typescript-eslint/types" "4.16.1" | |
1588 | 1588 | eslint-visitor-keys "^2.0.0" |
1589 | 1589 | |
1590 | 1590 | "@vitejs/plugin-legacy@^1.3.1": |
... | ... | @@ -8722,10 +8722,10 @@ typedarray-to-buffer@^3.1.5: |
8722 | 8722 | dependencies: |
8723 | 8723 | is-typedarray "^1.0.0" |
8724 | 8724 | |
8725 | -typescript@4.1.5: | |
8726 | - version "4.1.5" | |
8727 | - resolved "https://registry.npmjs.org/typescript/-/typescript-4.1.5.tgz#123a3b214aaff3be32926f0d8f1f6e704eb89a72" | |
8728 | - integrity sha512-6OSu9PTIzmn9TCDiovULTnET6BgXtDYL4Gg4szY+cGsc3JP1dQL8qvE8kShTRx1NIw4Q9IBHlwODjkjWEtMUyA== | |
8725 | +typescript@4.2.2: | |
8726 | + version "4.2.2" | |
8727 | + resolved "https://registry.npmjs.org/typescript/-/typescript-4.2.2.tgz#1450f020618f872db0ea17317d16d8da8ddb8c4c" | |
8728 | + integrity sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ== | |
8729 | 8729 | |
8730 | 8730 | uglify-js@^3.1.4: |
8731 | 8731 | version "3.12.5" |
... | ... | @@ -8974,28 +8974,28 @@ vfile@^4.0.0: |
8974 | 8974 | unist-util-stringify-position "^2.0.0" |
8975 | 8975 | vfile-message "^2.0.0" |
8976 | 8976 | |
8977 | -vite-plugin-compression@^0.2.2: | |
8978 | - version "0.2.2" | |
8979 | - resolved "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.2.2.tgz#943a0ae209f70e7917c73ee4b5dffc02b9195041" | |
8980 | - integrity sha512-QxMKUhFsTMi3XVsgTEYYrGFcU7YF69eS0JFOgMx68rDSJGgFV4Mov7mb94Fp8UN7lo8wKP7ZvM/WkeCPtd7c+g== | |
8977 | +vite-plugin-compression@^0.2.3: | |
8978 | + version "0.2.3" | |
8979 | + resolved "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.2.3.tgz#ddc876132966b2abcf9ab6ed387433bd188a2682" | |
8980 | + integrity sha512-enF0xRQTC5hzjNYVyjg8IKF/4jl9Z1jFf8gQTdT6TI1jjd5dsOc9dvJwk/xJHi78jKhTTYgX74PicqYQ4HBg1w== | |
8981 | 8981 | dependencies: |
8982 | 8982 | chalk "^4.1.0" |
8983 | 8983 | debug "^4.3.2" |
8984 | 8984 | fs-extra "^9.1.0" |
8985 | 8985 | |
8986 | -vite-plugin-html@^2.0.2: | |
8987 | - version "2.0.2" | |
8988 | - resolved "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-2.0.2.tgz#3c109f8535252e133977f136b566241c8d5ca8bd" | |
8989 | - integrity sha512-j1edPKZiQwvb7bxilaOrmcA+j+r38e0qkQ1RsS1KZxfrzZdjLWlXiOUaNoDCpdZ7UvXK4MR3JwAm/89HUTvSVg== | |
8986 | +vite-plugin-html@^2.0.3: | |
8987 | + version "2.0.3" | |
8988 | + resolved "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-2.0.3.tgz#9c610042b4181e95ec6c7d4b4125f3c00cbbd84b" | |
8989 | + integrity sha512-1+vFAXc8G1h5NRPNsV0e3GbD8KJL71nv2N8w5y4wdt6VwwAEe6zE2WI66PBVneRBJKOw56LH7C5WJvkMxec92g== | |
8990 | 8990 | dependencies: |
8991 | 8991 | ejs "^3.1.6" |
8992 | 8992 | fs-extra "^9.1.0" |
8993 | 8993 | html-minifier-terser "^5.1.1" |
8994 | 8994 | |
8995 | -vite-plugin-imagemin@^0.2.8: | |
8996 | - version "0.2.8" | |
8997 | - resolved "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.2.8.tgz#da07b1002b5c310a8d8ee05d57dc6274dc23c7dd" | |
8998 | - integrity sha512-8OJMh/E2zkoSv/hpLB1kBCaNvnh84EBG1bv0Wr8QaPZv9U1av7TFJcvxirygE6XyfvBSrz+4IaoU5K8xGaozqQ== | |
8995 | +vite-plugin-imagemin@^0.2.9: | |
8996 | + version "0.2.9" | |
8997 | + resolved "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.2.9.tgz#073b6a2042808bec33f1253ed9794359c9d51c39" | |
8998 | + integrity sha512-qCu2lOCLrIly8bONbqL/dJdcXxbVM+ZwLanD2vFzX6S1rCj11bXXXORGw72XC1OgxBm8SnstM1qL5hC25cV28w== | |
8999 | 8999 | dependencies: |
9000 | 9000 | "@types/imagemin" "^7.0.0" |
9001 | 9001 | "@types/imagemin-gifsicle" "^7.0.0" |
... | ... | @@ -9052,10 +9052,10 @@ vite-plugin-pwa@^0.5.6: |
9052 | 9052 | pretty-bytes "^5.6.0" |
9053 | 9053 | workbox-build "^6.1.1" |
9054 | 9054 | |
9055 | -vite-plugin-style-import@^0.7.5: | |
9056 | - version "0.7.5" | |
9057 | - resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.7.5.tgz#da0455fd79e273767e84ead66e96b82a10cc891c" | |
9058 | - integrity sha512-0jdP+fnt/duEmpS6gaI5yfLNUNF2KIDcQIzWAH4w1R+fwK98Zt3F+UZprIQAlreRCD+WDLPJJ/M4ECeqKzCtUQ== | |
9055 | +vite-plugin-style-import@^0.7.6: | |
9056 | + version "0.7.6" | |
9057 | + resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.7.6.tgz#909a5402f3a915fb2512e2a039e9cdb360fd2882" | |
9058 | + integrity sha512-EDjscCzMsmi6mJ0UbMLMkCGLo7LCdFsRJZdjO7sfUIB+2wsC1FjDJcIEGWg0Lzl+4gghv9rk+AP+WCibI83WNw== | |
9059 | 9059 | dependencies: |
9060 | 9060 | "@rollup/pluginutils" "^4.1.0" |
9061 | 9061 | change-case "^4.1.2" | ... | ... |