Commit 3520fd94655fd3fa10d651f0a95358fa9c2c6e7d

Authored by Vben
1 parent f866e465

chore: update deps

build/vite/plugin/index.ts
... ... @@ -17,7 +17,7 @@ import { configThemePlugin } from './theme';
17 17 import { configImageminPlugin } from './imagemin';
18 18 import { configWindiCssPlugin } from './windicss';
19 19 import { configSvgIconsPlugin } from './svgSprite';
20   -import { configHmrPlugin } from './hmr';
  20 +// import { configHmrPlugin } from './hmr';
21 21  
22 22 export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
23 23 const { VITE_USE_IMAGEMIN, VITE_USE_MOCK, VITE_LEGACY, VITE_BUILD_COMPRESS } = viteEnv;
... ... @@ -30,7 +30,7 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
30 30 ];
31 31  
32 32 // TODO
33   - !isBuild && vitePlugins.push(configHmrPlugin());
  33 + // !isBuild && vitePlugins.push(configHmrPlugin());
34 34  
35 35 // @vitejs/plugin-legacy
36 36 VITE_LEGACY && isBuild && vitePlugins.push(legacy());
... ...
package.json
... ... @@ -80,6 +80,7 @@
80 80 "@vitejs/plugin-vue-jsx": "^1.1.2",
81 81 "@vue/compiler-sfc": "^3.0.7",
82 82 "autoprefixer": "^10.2.5",
  83 + "body-parser": "^1.19.0",
83 84 "commitizen": "^4.2.3",
84 85 "conventional-changelog-cli": "^2.1.1",
85 86 "cross-env": "^7.0.3",
... ... @@ -116,16 +117,15 @@
116 117 "vite-plugin-purge-icons": "^0.7.0",
117 118 "vite-plugin-pwa": "^0.5.6",
118 119 "vite-plugin-style-import": "^0.8.1",
119   - "vite-plugin-svg-icons": "^0.3.5",
  120 + "vite-plugin-svg-icons": "^0.4.0",
120 121 "vite-plugin-theme": "^0.5.0",
121   - "vite-plugin-windicss": "0.8.3",
  122 + "vite-plugin-windicss": "0.9.4",
122 123 "vue-eslint-parser": "^7.6.0",
123 124 "yargs": "^16.2.0"
124 125 },
125 126 "resolutions": {
126 127 "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it",
127   - "bin-wrapper": "npm:bin-wrapper-china",
128   - "vite": "2.0.5"
  128 + "bin-wrapper": "npm:bin-wrapper-china"
129 129 },
130 130 "repository": {
131 131 "type": "git",
... ...
vite.config.ts
... ... @@ -43,7 +43,6 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
43 43 },
44 44  
45 45 build: {
46   - // minify: 'esbuild',
47 46 outDir: OUTPUT_DIR,
48 47 terserOptions: {
49 48 compress: {
... ...
yarn.lock
... ... @@ -2026,15 +2026,16 @@
2026 2026 dependencies:
2027 2027 vue-demi latest
2028 2028  
2029   -"@windicss/plugin-utils@0.8.3":
2030   - version "0.8.3"
2031   - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.8.3.tgz#b694121cb1b4e022c1ebb97d2507d292ca1ce293"
2032   - integrity sha512-Tk0/EOwRnfi3KzvYJwfDyrImbHRXd7jMUw0MsAJWee0pzHre5Se7IM8/8SrcafJ29aL3v9KcB/qd/uBD8TBmow==
  2029 +"@windicss/plugin-utils@0.9.4":
  2030 + version "0.9.4"
  2031 + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.9.4.tgz#6f1212f672257a391e0077a7baf172a55282e631"
  2032 + integrity sha512-udA6kvgj1/zUrDvKw8To0BqG3PsaDwJkOHgT0GnEzyXg3b37TUEJ/8H1sW98ai12K5jL+ovd6/8hmve0wkvvoA==
2033 2033 dependencies:
  2034 + debug "^4.3.2"
2034 2035 fast-glob "^3.2.5"
2035 2036 micromatch "^4.0.2"
2036 2037 sucrase "^3.17.1"
2037   - windicss "^2.4.5"
  2038 + windicss "^2.5.2"
2038 2039  
2039 2040 "@zxcvbn-ts/core@^0.3.0":
2040 2041 version "0.3.0"
... ... @@ -2638,6 +2639,22 @@ bluebird@^3.5.0, bluebird@^3.7.2:
2638 2639 resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
2639 2640 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
2640 2641  
  2642 +body-parser@^1.19.0:
  2643 + version "1.19.0"
  2644 + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
  2645 + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
  2646 + dependencies:
  2647 + bytes "3.1.0"
  2648 + content-type "~1.0.4"
  2649 + debug "2.6.9"
  2650 + depd "~1.1.2"
  2651 + http-errors "1.7.2"
  2652 + iconv-lite "0.4.24"
  2653 + on-finished "~2.3.0"
  2654 + qs "6.7.0"
  2655 + raw-body "2.4.0"
  2656 + type-is "~1.6.17"
  2657 +
2641 2658 boolbase@^1.0.0, boolbase@~1.0.0:
2642 2659 version "1.0.0"
2643 2660 resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
... ... @@ -2745,6 +2762,11 @@ builtin-modules@^3.1.0:
2745 2762 resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887"
2746 2763 integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==
2747 2764  
  2765 +bytes@3.1.0:
  2766 + version "3.1.0"
  2767 + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
  2768 + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
  2769 +
2748 2770 cache-base@^1.0.1:
2749 2771 version "1.0.1"
2750 2772 resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
... ... @@ -3307,6 +3329,11 @@ content-disposition@^0.5.2:
3307 3329 dependencies:
3308 3330 safe-buffer "5.1.2"
3309 3331  
  3332 +content-type@~1.0.4:
  3333 + version "1.0.4"
  3334 + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
  3335 + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
  3336 +
3310 3337 conventional-changelog-angular@^5.0.11, conventional-changelog-angular@^5.0.12:
3311 3338 version "5.0.12"
3312 3339 resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9"
... ... @@ -3915,6 +3942,11 @@ delayed-stream@~1.0.0:
3915 3942 resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
3916 3943 integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
3917 3944  
  3945 +depd@~1.1.2:
  3946 + version "1.1.2"
  3947 + resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
  3948 + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
  3949 +
3918 3950 dependency-tree@^8.0.0:
3919 3951 version "8.0.0"
3920 3952 resolved "https://registry.npmjs.org/dependency-tree/-/dependency-tree-8.0.0.tgz#59d141bcb53ca59f54e7f7b94013820ddd49b7d7"
... ... @@ -5708,6 +5740,17 @@ http-cache-semantics@3.8.1:
5708 5740 resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
5709 5741 integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
5710 5742  
  5743 +http-errors@1.7.2:
  5744 + version "1.7.2"
  5745 + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
  5746 + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
  5747 + dependencies:
  5748 + depd "~1.1.2"
  5749 + inherits "2.0.3"
  5750 + setprototypeof "1.1.1"
  5751 + statuses ">= 1.5.0 < 2"
  5752 + toidentifier "1.0.0"
  5753 +
5711 5754 http-proxy@^1.18.0:
5712 5755 version "1.18.1"
5713 5756 resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
... ... @@ -5918,6 +5961,11 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
5918 5961 resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
5919 5962 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
5920 5963  
  5964 +inherits@2.0.3:
  5965 + version "2.0.3"
  5966 + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
  5967 + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
  5968 +
5921 5969 ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
5922 5970 version "1.3.8"
5923 5971 resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
... ... @@ -7449,6 +7497,11 @@ mdn-data@2.0.4:
7449 7497 resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
7450 7498 integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
7451 7499  
  7500 +media-typer@0.3.0:
  7501 + version "0.3.0"
  7502 + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
  7503 + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
  7504 +
7452 7505 meow@^3.3.0:
7453 7506 version "3.7.0"
7454 7507 resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
... ... @@ -7588,7 +7641,7 @@ mime-db@1.46.0, mime-db@^1.28.0:
7588 7641 resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee"
7589 7642 integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==
7590 7643  
7591   -mime-types@^2.1.12, mime-types@~2.1.19:
  7644 +mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24:
7592 7645 version "2.1.29"
7593 7646 resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2"
7594 7647 integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==
... ... @@ -8905,6 +8958,11 @@ qrcode@^1.4.4:
8905 8958 pngjs "^3.3.0"
8906 8959 yargs "^13.2.4"
8907 8960  
  8961 +qs@6.7.0:
  8962 + version "6.7.0"
  8963 + resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
  8964 + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
  8965 +
8908 8966 qs@^6.4.0:
8909 8967 version "6.10.0"
8910 8968 resolved "https://registry.npmjs.org/qs/-/qs-6.10.0.tgz#8b6519121ab291c316a3e4d49cecf6d13d8c7fe5"
... ... @@ -8951,6 +9009,16 @@ randombytes@^2.1.0:
8951 9009 dependencies:
8952 9010 safe-buffer "^5.1.0"
8953 9011  
  9012 +raw-body@2.4.0:
  9013 + version "2.4.0"
  9014 + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
  9015 + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
  9016 + dependencies:
  9017 + bytes "3.1.0"
  9018 + http-errors "1.7.2"
  9019 + iconv-lite "0.4.24"
  9020 + unpipe "1.0.0"
  9021 +
8954 9022 rc@^1.2.7:
8955 9023 version "1.2.8"
8956 9024 resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
... ... @@ -9592,6 +9660,11 @@ set-value@^2.0.0, set-value@^2.0.1:
9592 9660 is-plain-object "^2.0.3"
9593 9661 split-string "^3.0.1"
9594 9662  
  9663 +setprototypeof@1.1.1:
  9664 + version "1.1.1"
  9665 + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
  9666 + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
  9667 +
9595 9668 shallow-equal@^1.0.0:
9596 9669 version "1.2.1"
9597 9670 resolved "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
... ... @@ -9900,7 +9973,7 @@ static-extend@^0.1.1:
9900 9973 define-property "^0.2.5"
9901 9974 object-copy "^0.1.0"
9902 9975  
9903   -statuses@~1.5.0:
  9976 +"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
9904 9977 version "1.5.0"
9905 9978 resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
9906 9979 integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
... ... @@ -10592,6 +10665,11 @@ to-regex@^3.0.1, to-regex@^3.0.2:
10592 10665 regex-not "^1.0.2"
10593 10666 safe-regex "^1.1.0"
10594 10667  
  10668 +toidentifier@1.0.0:
  10669 + version "1.0.0"
  10670 + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
  10671 + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
  10672 +
10595 10673 tough-cookie@^2.3.3, tough-cookie@~2.5.0:
10596 10674 version "2.5.0"
10597 10675 resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
... ... @@ -10771,6 +10849,14 @@ type-fest@^0.8.1:
10771 10849 resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
10772 10850 integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
10773 10851  
  10852 +type-is@~1.6.17:
  10853 + version "1.6.18"
  10854 + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
  10855 + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
  10856 + dependencies:
  10857 + media-typer "0.3.0"
  10858 + mime-types "~2.1.24"
  10859 +
10774 10860 typedarray-to-buffer@^3.1.5:
10775 10861 version "3.1.5"
10776 10862 resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
... ... @@ -10904,7 +10990,7 @@ universalify@^2.0.0:
10904 10990 resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
10905 10991 integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
10906 10992  
10907   -unpipe@~1.0.0:
  10993 +unpipe@1.0.0, unpipe@~1.0.0:
10908 10994 version "1.0.0"
10909 10995 resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
10910 10996 integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
... ... @@ -11156,10 +11242,10 @@ vite-plugin-style-import@^0.8.1:
11156 11242 es-module-lexer "^0.4.1"
11157 11243 magic-string "^0.25.7"
11158 11244  
11159   -vite-plugin-svg-icons@^0.3.5:
11160   - version "0.3.5"
11161   - resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-0.3.5.tgz#7fb72fcd17ee8b8a1c19fac1682e83169b72ad99"
11162   - integrity sha512-MyldHrtpfhc2zZH0/AS4bW1TtpluBpdINCODiBZpfvwO9YavvT827kp4TnXfqUhiiCNZbkMUS16u2vDijaL7CQ==
  11245 +vite-plugin-svg-icons@^0.4.0:
  11246 + version "0.4.0"
  11247 + resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-0.4.0.tgz#c0139d363520a4303719255276ca50e7e63889bb"
  11248 + integrity sha512-I6ESoID1B5H+gAYOB1K0nNJHrbw1O+KjOQv5PN9wSODLN6Y8L1ibqKa3+k3q08pvVku298J6lgaJaU2c8emttA==
11163 11249 dependencies:
11164 11250 "@types/svgo" "^1.3.5"
11165 11251 debug "^4.3.2"
... ... @@ -11198,13 +11284,14 @@ vite-plugin-theme@^0.5.0:
11198 11284 tinycolor2 "^1.4.2"
11199 11285 ts-jest "^26.5.3"
11200 11286  
11201   -vite-plugin-windicss@0.8.3:
11202   - version "0.8.3"
11203   - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.8.3.tgz#81944473f642a4d4da81f9f8d77012e73095e4a3"
11204   - integrity sha512-VhiYUBIexKD1Il1dxV6yB4SN+ufza3HWhKK7IFFGrf4gj2JqSX9MNUdS2jPOEInyJszw+fT7WrHj1hsYd7ROJA==
  11287 +vite-plugin-windicss@0.9.4:
  11288 + version "0.9.4"
  11289 + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.9.4.tgz#cc77935b60b6f7ae6b51cbed9c9fd13e48bc705f"
  11290 + integrity sha512-hLrPV+9KF260iIRVK4XirG3zb7T9qJyZ5xfUGrF560cA7I8IsTMI91ePk8F0H70cWzME+h/wSQiUejRvcvaSnA==
11205 11291 dependencies:
11206   - "@windicss/plugin-utils" "0.8.3"
11207   - windicss "^2.4.5"
  11292 + "@windicss/plugin-utils" "0.9.4"
  11293 + debug "^4.3.2"
  11294 + windicss "^2.5.2"
11208 11295  
11209 11296 vite@2.0.5:
11210 11297 version "2.0.5"
... ... @@ -11390,7 +11477,7 @@ which@^2.0.1, which@^2.0.2:
11390 11477 dependencies:
11391 11478 isexe "^2.0.0"
11392 11479  
11393   -windicss@^2.4.5:
  11480 +windicss@^2.5.2:
11394 11481 version "2.5.2"
11395 11482 resolved "https://registry.npmjs.org/windicss/-/windicss-2.5.2.tgz#831858fe45edbf8400d5e8c6b9275fa3ffffcb2f"
11396 11483 integrity sha512-WzynOx1rQGzgUq62wqyWjUzOEPArwP8oeWyLqymiF54LSFC7f0oIYXR01bxY/y6OK2wODyK/OuwahPNAsseqqg==
... ...