Commit 7e564c2984f32337f2aa6e67aba9bbf968c2699d
1 parent
a09a0eed
chore: update deps
Showing
10 changed files
with
118 additions
and
93 deletions
.eslintrc.js
1 | 1 | module.exports = { |
2 | + root: true, | |
3 | + env: { | |
4 | + browser: true, | |
5 | + node: true, | |
6 | + es6: true, | |
7 | + }, | |
2 | 8 | parser: 'vue-eslint-parser', |
3 | 9 | parserOptions: { |
4 | 10 | parser: '@typescript-eslint/parser', |
5 | 11 | ecmaVersion: 2020, |
6 | 12 | sourceType: 'module', |
13 | + jsxPragma: 'React', | |
7 | 14 | ecmaFeatures: { |
8 | 15 | jsx: true, |
16 | + tsx: true, | |
9 | 17 | }, |
10 | 18 | }, |
11 | - | |
12 | 19 | extends: [ |
13 | 20 | 'plugin:vue/vue3-recommended', |
14 | 21 | 'plugin:@typescript-eslint/recommended', |
15 | - 'prettier/@typescript-eslint', | |
22 | + 'prettier', | |
16 | 23 | 'plugin:prettier/recommended', |
17 | 24 | ], |
18 | 25 | rules: { | ... | ... |
.github/workflows/release.yml
1 | -name: Release | |
1 | +name: Create Release | |
2 | 2 | |
3 | 3 | on: |
4 | 4 | push: |
... | ... | @@ -6,10 +6,19 @@ on: |
6 | 6 | - v* |
7 | 7 | |
8 | 8 | jobs: |
9 | - release: | |
9 | + build: | |
10 | + name: Create Release | |
10 | 11 | runs-on: ubuntu-latest |
11 | 12 | steps: |
12 | - - uses: actions/checkout@v2 | |
13 | - - run: npx conventional-github-releaser -p angular | |
13 | + - name: Checkout code | |
14 | + uses: actions/checkout@master | |
15 | + | |
16 | + - name: Create Release for Tag | |
17 | + id: release_tag | |
18 | + uses: yyx990803/release-tag@master | |
14 | 19 | env: |
15 | - CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
20 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
21 | + with: | |
22 | + tag_name: ${{ github.ref }} | |
23 | + body: | | |
24 | + Please refer to [CHANGELOG.md](https://github.com/anncwb/vue-vben-admin/blob/main/CHANGELOG.md) for details. | ... | ... |
.vscode/extensions.json
CHANGELOG.zh_CN.md
build/vite/plugin/windicss.ts
package.json
... | ... | @@ -41,7 +41,7 @@ |
41 | 41 | "sortablejs": "^1.13.0", |
42 | 42 | "vditor": "^3.8.1", |
43 | 43 | "vue": "^3.0.5", |
44 | - "vue-i18n": "9.0.0-rc.2", | |
44 | + "vue-i18n": "9.0.0-rc.7", | |
45 | 45 | "vue-router": "^4.0.4", |
46 | 46 | "vue-types": "^3.0.2", |
47 | 47 | "vuex": "^4.0.0", |
... | ... | @@ -75,7 +75,7 @@ |
75 | 75 | "cross-env": "^7.0.3", |
76 | 76 | "dotenv": "^8.2.0", |
77 | 77 | "eslint": "^7.20.0", |
78 | - "eslint-config-prettier": "^7.2.0", | |
78 | + "eslint-config-prettier": "^8.0.0", | |
79 | 79 | "eslint-plugin-prettier": "^3.3.1", |
80 | 80 | "eslint-plugin-vue": "^7.6.0", |
81 | 81 | "esno": "^0.4.4", |
... | ... | @@ -98,13 +98,13 @@ |
98 | 98 | "vite": "2.0.1", |
99 | 99 | "vite-plugin-compression": "^0.2.1", |
100 | 100 | "vite-plugin-html": "^2.0.1", |
101 | - "vite-plugin-imagemin": "^0.2.7", | |
101 | + "vite-plugin-imagemin": "^0.2.8", | |
102 | 102 | "vite-plugin-mock": "^2.1.4", |
103 | 103 | "vite-plugin-purge-icons": "^0.7.0", |
104 | 104 | "vite-plugin-pwa": "^0.5.3", |
105 | 105 | "vite-plugin-style-import": "^0.7.3", |
106 | - "vite-plugin-theme": "^0.4.3", | |
107 | - "vite-plugin-windicss": "0.4.4", | |
106 | + "vite-plugin-theme": "^0.4.8", | |
107 | + "vite-plugin-windicss": "0.4.7", | |
108 | 108 | "vue-eslint-parser": "^7.5.0", |
109 | 109 | "yargs": "^16.2.0" |
110 | 110 | }, | ... | ... |
src/components/Tree/src/BasicTree.tsx
... | ... | @@ -206,7 +206,7 @@ export default defineComponent({ |
206 | 206 | |
207 | 207 | return () => { |
208 | 208 | return ( |
209 | - <Tree {...unref(getBindValues)} class={prefixCls}> | |
209 | + <Tree {...(unref(getBindValues) as any)} class={prefixCls}> | |
210 | 210 | {{ |
211 | 211 | switcherIcon: () => <DownOutlined />, |
212 | 212 | default: () => renderTreeNode({ data: unref(getTreeData) }), | ... | ... |
src/views/sys/login/Login.vue
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | <AppLogo :alwaysShowTitle="true" /> |
10 | 10 | </span> |
11 | 11 | |
12 | - <div class="container relative h-full py-2 mx-auto sm:px-10 -enter-x"> | |
12 | + <div class="container relative h-full py-2 mx-auto sm:px-10"> | |
13 | 13 | <div class="flex h-full"> |
14 | 14 | <div class="hidden xl:flex xl:flex-col xl:w-6/12 min-h-full mr-4 pl-4"> |
15 | 15 | <AppLogo class="-enter-x" /> | ... | ... |
test/upload-server/app.js
... | ... | @@ -50,13 +50,13 @@ const uploadFilePublic = function (ctx, files, flag) { |
50 | 50 | ctx.body = { |
51 | 51 | url: url, |
52 | 52 | code: 0, |
53 | - message: '上传成功', | |
53 | + message: 'upload Success!', | |
54 | 54 | }; |
55 | 55 | } else { |
56 | 56 | ctx.body = { |
57 | 57 | url: uploadUrl + `/${files.name}`, |
58 | 58 | code: 0, |
59 | - message: '上传成功', | |
59 | + message: 'upload Success!', | |
60 | 60 | }; |
61 | 61 | } |
62 | 62 | }; | ... | ... |
yarn.lock
... | ... | @@ -1088,43 +1088,43 @@ |
1088 | 1088 | resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.307.tgz#db97e8faba1183e0411471dafe210deba0cc1fe2" |
1089 | 1089 | integrity sha512-2hyKd4DKGWNtQ9CNC4s7tRzMHyDai3GnARC26nGZo7f4/r86FTspvjCEbqpbuM5spJ1fn5jx00Iv4Qee89ooRA== |
1090 | 1090 | |
1091 | -"@intlify/core-base@9.0.0-rc.2": | |
1092 | - version "9.0.0-rc.2" | |
1093 | - resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.0.0-rc.2.tgz#55adc44f5bb046404e872851e796cc2e19174d40" | |
1094 | - integrity sha512-Ob1Pa1+N3kAHRXISmsS8Xyq34l8ZBwAwBYfwx34OSbnjBC0PoSGe6Mgx/50RwXXDIpT/vbzQpLWf+QV+HAuEHQ== | |
1095 | - dependencies: | |
1096 | - "@intlify/message-compiler" "9.0.0-rc.2" | |
1097 | - "@intlify/message-resolver" "9.0.0-rc.2" | |
1098 | - "@intlify/runtime" "9.0.0-rc.2" | |
1099 | - "@intlify/shared" "9.0.0-rc.2" | |
1100 | - | |
1101 | -"@intlify/message-compiler@9.0.0-rc.2": | |
1102 | - version "9.0.0-rc.2" | |
1103 | - resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.0.0-rc.2.tgz#b2ea4852af26f62e850c36157c4b8c03e7a072f4" | |
1104 | - integrity sha512-ahq1sIIFXX+NZfxDLzIPe49PiObjVpPhsNOkA3z16rhulAmNo7Kz62CTxzVdjG/rXzRP6VYm2kNZlIEzrcL6sw== | |
1105 | - dependencies: | |
1106 | - "@intlify/message-resolver" "9.0.0-rc.2" | |
1107 | - "@intlify/shared" "9.0.0-rc.2" | |
1091 | +"@intlify/core-base@9.0.0-rc.7": | |
1092 | + version "9.0.0-rc.7" | |
1093 | + resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.0.0-rc.7.tgz#664e58d0c24465d19fb84d65be2bc4c4735c2b4e" | |
1094 | + integrity sha512-jYF6kQpSCeBXprZRcggGV/YQAwqXRWo2MtcdkPfZf0cP26Yx12UeFF0Uk5W5M/cgts3ktkhF/CzvxtXP1mevlQ== | |
1095 | + dependencies: | |
1096 | + "@intlify/message-compiler" "9.0.0-rc.7" | |
1097 | + "@intlify/message-resolver" "9.0.0-rc.7" | |
1098 | + "@intlify/runtime" "9.0.0-rc.7" | |
1099 | + "@intlify/shared" "9.0.0-rc.7" | |
1100 | + | |
1101 | +"@intlify/message-compiler@9.0.0-rc.7": | |
1102 | + version "9.0.0-rc.7" | |
1103 | + resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.0.0-rc.7.tgz#383459a96220536ad675b77fef2d3f3f652d5647" | |
1104 | + integrity sha512-T8cPzSkNV0KHtLokQW8hBHMlqYcpknJy8JygwA4R6guiO2G9eyUdZ+rswDq5vrGfSIUglgHYusoIvOhFyQpkpQ== | |
1105 | + dependencies: | |
1106 | + "@intlify/message-resolver" "9.0.0-rc.7" | |
1107 | + "@intlify/shared" "9.0.0-rc.7" | |
1108 | 1108 | source-map "0.6.1" |
1109 | 1109 | |
1110 | -"@intlify/message-resolver@9.0.0-rc.2": | |
1111 | - version "9.0.0-rc.2" | |
1112 | - resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.0.0-rc.2.tgz#d6f5eac6dc594ebb1c5e2f68a94fd9e5429c4a15" | |
1113 | - integrity sha512-CNRrIflQmq3aZWsyGu3mfR9d+xA7W0t5HZQeSh+YR9IBHxNg+2uWbYhGDab87yzovIGOnUSO9yxUdD8gBBmR9Q== | |
1110 | +"@intlify/message-resolver@9.0.0-rc.7": | |
1111 | + version "9.0.0-rc.7" | |
1112 | + resolved "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.0.0-rc.7.tgz#f41a552c7dd1c85f7042478bf264b0459c376376" | |
1113 | + integrity sha512-d0Jz0OWiH7jYTDk4VzTnVroJ2eylQUgVIk+2ztNJAHsrKoy3wxq6Tw/GlIGOrVJCFqZLWuxg7dmuhZDd4fliTw== | |
1114 | 1114 | |
1115 | -"@intlify/runtime@9.0.0-rc.2": | |
1116 | - version "9.0.0-rc.2" | |
1117 | - resolved "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.0.0-rc.2.tgz#20f83a2f57a7789a9588e42a2cf5163f6f13255b" | |
1118 | - integrity sha512-FO+PsHYRPWXwj13zse0My8u6dcnCyEFpIkJ30CbvOtrk/VKUOTQJq2Q0/w32PzIIImx166NAtcMPIUfVZq7iLA== | |
1115 | +"@intlify/runtime@9.0.0-rc.7": | |
1116 | + version "9.0.0-rc.7" | |
1117 | + resolved "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.0.0-rc.7.tgz#81ed1602447c387476aeaf6eea7ff0608768f67e" | |
1118 | + integrity sha512-SdM9Gqca4W+u/O6XHqDf38UwoiopbyRtUnnqWy5DGihbE1CTKlFZSGPMx95cLOVt0AIeVK/eRwclxLiRtQRM7A== | |
1119 | 1119 | dependencies: |
1120 | - "@intlify/message-compiler" "9.0.0-rc.2" | |
1121 | - "@intlify/message-resolver" "9.0.0-rc.2" | |
1122 | - "@intlify/shared" "9.0.0-rc.2" | |
1120 | + "@intlify/message-compiler" "9.0.0-rc.7" | |
1121 | + "@intlify/message-resolver" "9.0.0-rc.7" | |
1122 | + "@intlify/shared" "9.0.0-rc.7" | |
1123 | 1123 | |
1124 | -"@intlify/shared@9.0.0-rc.2": | |
1125 | - version "9.0.0-rc.2" | |
1126 | - resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.0.0-rc.2.tgz#31f53616fe515e8629f39c179f217ca562d06256" | |
1127 | - integrity sha512-VxFKsdVy0KsdFiB8lBWidMN0ydSPCv8D+hItGhiL75YWd6ShHoayA5ZR9otdvCfVGkGH6/nB+7MoWK19bpDmWw== | |
1124 | +"@intlify/shared@9.0.0-rc.7": | |
1125 | + version "9.0.0-rc.7" | |
1126 | + resolved "https://registry.npmjs.org/@intlify/shared/-/shared-9.0.0-rc.7.tgz#4bab9e58bbb09bc690fd953d1e83d9026e3a3893" | |
1127 | + integrity sha512-ynMHCCcBPtQAdJlOUMzrlvUp+DdKlnB0yrkPPMzAs8bBETwJbAK1Jq6zBHlMZzscPcF+1ia5pj4Gmmn7QL9b8w== | |
1128 | 1128 | |
1129 | 1129 | "@ls-lint/ls-lint@^1.9.2": |
1130 | 1130 | version "1.9.2" |
... | ... | @@ -1624,10 +1624,10 @@ |
1624 | 1624 | "@vue/compiler-dom" "3.0.5" |
1625 | 1625 | "@vue/shared" "3.0.5" |
1626 | 1626 | |
1627 | -"@vue/devtools-api@^6.0.0-beta.3": | |
1628 | - version "6.0.0-beta.3" | |
1629 | - resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.3.tgz#5a66cc8beed688fe18c272ee7a8bd8ed7e35a54c" | |
1630 | - integrity sha512-iJQhVyWzWIJxYIMjbZpljZQfU4gL2IMD5YQm3HXO8tQRU7RqqnD3f1WHn+vrqvrSvM8Qw2BeNugwdBBmbK8Oxg== | |
1627 | +"@vue/devtools-api@^6.0.0-beta.5": | |
1628 | + version "6.0.0-beta.7" | |
1629 | + resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.7.tgz#1d306613c93b9a837a3776b1b9255502662f850f" | |
1630 | + integrity sha512-mIfqX8ZF6s2ulelIzfxGk9sFoigpoeK/2/DlWrtBGWfvwaK3kR1P2bxNkZ0LbJeuKHfcRP6hGZtGist7nxUN9A== | |
1631 | 1631 | |
1632 | 1632 | "@vue/reactivity@3.0.5": |
1633 | 1633 | version "3.0.5" |
... | ... | @@ -1673,16 +1673,16 @@ |
1673 | 1673 | dependencies: |
1674 | 1674 | vue-demi latest |
1675 | 1675 | |
1676 | -"@windicss/plugin-utils@0.4.4": | |
1677 | - version "0.4.4" | |
1678 | - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.4.4.tgz#fd18565a23df7896d8a4550bcecad631311db538" | |
1679 | - integrity sha512-qQHtNPt0eI2K2lsFHBN5y/rbC3ndXgR+PZuKdj2oirQLKMXFyU70+GdeMShi3OkZXAwGqN08MvdoiTsC2jGEMQ== | |
1676 | +"@windicss/plugin-utils@0.4.7": | |
1677 | + version "0.4.7" | |
1678 | + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.4.7.tgz#a589d810867713dba436cac53af4031fa343e66a" | |
1679 | + integrity sha512-esAqHNpNL4DIWd/uFn8Y0chzkcrFVrUcO41JosyHu78ujEaOD5Joi5ZyPVmTIiaOlFwNHpfb0wNtkCr3J+vU/w== | |
1680 | 1680 | dependencies: |
1681 | - esbuild "^0.8.49" | |
1681 | + esbuild "^0.8.50" | |
1682 | 1682 | esbuild-register "^2.0.0" |
1683 | 1683 | fast-glob "^3.2.5" |
1684 | 1684 | micromatch "^4.0.2" |
1685 | - windicss "^2.1.15" | |
1685 | + windicss "^2.1.19" | |
1686 | 1686 | |
1687 | 1687 | "@zxcvbn-ts/core@^0.2.0": |
1688 | 1688 | version "0.2.0" |
... | ... | @@ -3575,10 +3575,10 @@ esbuild@^0.8.48: |
3575 | 3575 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.48.tgz#a57e4dde84ec56da1c6ecaefee97e9da6c5b00b5" |
3576 | 3576 | integrity sha512-lrH8lA8wWQ6Lpe1z6C7ZZaFSmRsUlcQAqe16nf7ITySQ7MV4+vI7qAqQlT/u+c3+9AL3VXmT4MXTxV2e63pO4A== |
3577 | 3577 | |
3578 | -esbuild@^0.8.49: | |
3579 | - version "0.8.49" | |
3580 | - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.49.tgz#3d33f71b3966611f822cf4c838115f3fbd16def2" | |
3581 | - integrity sha512-itiFVYv5UZz4NooO7/Y0bRGVDGz/M/cxKbl6zyNI5pnKaz1mZjvZXAFhhDVz6rGCmcdTKj5oag6rh8DaaSSmfQ== | |
3578 | +esbuild@^0.8.50: | |
3579 | + version "0.8.50" | |
3580 | + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.50.tgz#ebf24fde0cdad1a369789dd6fd7a820b0a01e46c" | |
3581 | + integrity sha512-oidFLXssA7IccYzkqLVZSqNJDwDq8Mh/vqvrW+3fPWM7iUiC5O2bCllhnO8+K9LlyL/2Z6n+WwRJAz9fqSIVRg== | |
3582 | 3582 | |
3583 | 3583 | escalade@^3.1.1: |
3584 | 3584 | version "3.1.1" |
... | ... | @@ -3595,10 +3595,10 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: |
3595 | 3595 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |
3596 | 3596 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= |
3597 | 3597 | |
3598 | -eslint-config-prettier@^7.2.0: | |
3599 | - version "7.2.0" | |
3600 | - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz#f4a4bd2832e810e8cc7c1411ec85b3e85c0c53f9" | |
3601 | - integrity sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg== | |
3598 | +eslint-config-prettier@^8.0.0: | |
3599 | + version "8.0.0" | |
3600 | + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz#024d661444319686c588c8849c8da33815dbdb1c" | |
3601 | + integrity sha512-5EaAVPsIHu+grmm5WKjxUia4yHgRrbkd8I0ffqUSwixCPMVBrbS97UnzlEY/Q7OWo584vgixefM0kJnUfo/VjA== | |
3602 | 3602 | |
3603 | 3603 | eslint-plugin-prettier@^3.3.1: |
3604 | 3604 | version "3.3.1" |
... | ... | @@ -8847,10 +8847,10 @@ vite-plugin-html@^2.0.1: |
8847 | 8847 | fs-extra "^9.1.0" |
8848 | 8848 | html-minifier-terser "^5.1.1" |
8849 | 8849 | |
8850 | -vite-plugin-imagemin@^0.2.7: | |
8851 | - version "0.2.7" | |
8852 | - resolved "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.2.7.tgz#74b4a5e00e9ebef241e6bcd1c7eddd61e833614c" | |
8853 | - integrity sha512-WRHnZ1QATluxqUNpOyFUtShLm+X+FfVoP6ZBcVqeaFU9EmmhR/Bp6TuqWP8jufRyy4lzprW8nxaRUwPD8ZOxYA== | |
8850 | +vite-plugin-imagemin@^0.2.8: | |
8851 | + version "0.2.8" | |
8852 | + resolved "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.2.8.tgz#da07b1002b5c310a8d8ee05d57dc6274dc23c7dd" | |
8853 | + integrity sha512-8OJMh/E2zkoSv/hpLB1kBCaNvnh84EBG1bv0Wr8QaPZv9U1av7TFJcvxirygE6XyfvBSrz+4IaoU5K8xGaozqQ== | |
8854 | 8854 | dependencies: |
8855 | 8855 | "@types/imagemin" "^7.0.0" |
8856 | 8856 | "@types/imagemin-gifsicle" "^7.0.0" |
... | ... | @@ -8918,10 +8918,10 @@ vite-plugin-style-import@^0.7.3: |
8918 | 8918 | es-module-lexer "^0.3.26" |
8919 | 8919 | magic-string "^0.25.7" |
8920 | 8920 | |
8921 | -vite-plugin-theme@^0.4.3: | |
8922 | - version "0.4.3" | |
8923 | - resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.4.3.tgz#d1d92a7d0d63aa0af4703e50ae2cdc0285295bd2" | |
8924 | - integrity sha512-5qychnrG+iN6+YJmGJT853IT2elr5TIF6I9GkRStVs5GWemR3f/OllLN/AjO1j8vnTG58mttYpyD8N5zGQ/P8w== | |
8921 | +vite-plugin-theme@^0.4.8: | |
8922 | + version "0.4.8" | |
8923 | + resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.4.8.tgz#e5e826c7dccc6c8b46c4034dd27f92f2e9e27d94" | |
8924 | + integrity sha512-SXjSp4FaUmoK5Mjab4W+oxt51ObtmZQFURilqHuaxqqodH1lG2XAisfH+92gFTBU+JJUACZ2doiA6NV/BDs04Q== | |
8925 | 8925 | dependencies: |
8926 | 8926 | "@types/tinycolor2" "^1.4.2" |
8927 | 8927 | chalk "^4.1.0" |
... | ... | @@ -8930,13 +8930,13 @@ vite-plugin-theme@^0.4.3: |
8930 | 8930 | es-module-lexer "^0.3.26" |
8931 | 8931 | tinycolor2 "^1.4.2" |
8932 | 8932 | |
8933 | -vite-plugin-windicss@0.4.4: | |
8934 | - version "0.4.4" | |
8935 | - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.4.4.tgz#fd13fba5b55211f34768f5acfadfd743f95c24a6" | |
8936 | - integrity sha512-VDQn4cO+cq7sEV2yD1n+Mg6sN4TiFZwdeuteN7uDk6gintbUAMNHyoFyZUF0Z0/vYN4Ca62HvXlXdTgheE4QYg== | |
8933 | +vite-plugin-windicss@0.4.7: | |
8934 | + version "0.4.7" | |
8935 | + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.4.7.tgz#14ad26db2e6bc89cad0a758b7322a03eb59860b5" | |
8936 | + integrity sha512-xesJIam2t3yBppZMyMoHSUDHtZOoDRcIdfzCRwIgbAnjELo8t/cR60OfGJf5JWLAR72oZ5/dYVYT2o0EO0co6A== | |
8937 | 8937 | dependencies: |
8938 | - "@windicss/plugin-utils" "0.4.4" | |
8939 | - windicss "^2.1.15" | |
8938 | + "@windicss/plugin-utils" "0.4.7" | |
8939 | + windicss "^2.1.19" | |
8940 | 8940 | |
8941 | 8941 | vite@2.0.1: |
8942 | 8942 | version "2.0.1" |
... | ... | @@ -8967,14 +8967,14 @@ vue-eslint-parser@^7.5.0: |
8967 | 8967 | esquery "^1.4.0" |
8968 | 8968 | lodash "^4.17.15" |
8969 | 8969 | |
8970 | -vue-i18n@9.0.0-rc.2: | |
8971 | - version "9.0.0-rc.2" | |
8972 | - resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.0.0-rc.2.tgz#c644fae92f57aa648558b09ac343dd8435455c38" | |
8973 | - integrity sha512-1t3PirgLaKeERwWGYgGr+Umo74cCzGrhnOeYzMX+DqGTduXs7IjuJ5gxPUAuQcA4o+DCm9DgjkeWuqtbYO3YAg== | |
8970 | +vue-i18n@9.0.0-rc.7: | |
8971 | + version "9.0.0-rc.7" | |
8972 | + resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.0.0-rc.7.tgz#4097dfaa0d66319bbcd9fe5fb22c4b72e97720b5" | |
8973 | + integrity sha512-weNLPLqGiitziBUpGQHyxYlhuw447yR4EcsvmqUX3MocIKciv6OMHKxUguCFC1m1ZRCzHQwik7fz+Q8u4UmEdQ== | |
8974 | 8974 | dependencies: |
8975 | - "@intlify/core-base" "9.0.0-rc.2" | |
8976 | - "@intlify/shared" "9.0.0-rc.2" | |
8977 | - "@vue/devtools-api" "^6.0.0-beta.3" | |
8975 | + "@intlify/core-base" "9.0.0-rc.7" | |
8976 | + "@intlify/shared" "9.0.0-rc.7" | |
8977 | + "@vue/devtools-api" "^6.0.0-beta.5" | |
8978 | 8978 | |
8979 | 8979 | vue-router@^4.0.4: |
8980 | 8980 | version "4.0.4" |
... | ... | @@ -9054,10 +9054,10 @@ which@^2.0.1: |
9054 | 9054 | dependencies: |
9055 | 9055 | isexe "^2.0.0" |
9056 | 9056 | |
9057 | -windicss@^2.1.15: | |
9058 | - version "2.1.15" | |
9059 | - resolved "https://registry.npmjs.org/windicss/-/windicss-2.1.15.tgz#0a5bf1a56711ab53de8093a3c855764d93ffac00" | |
9060 | - integrity sha512-gBihXNJPzv/kBaelOlXvbrmWsWuv98OPSf/yUYjc8EnRGCOxDOQIRin4FYPTWCmZi91PZThh7nMjzQZiBV+MYg== | |
9057 | +windicss@^2.1.19: | |
9058 | + version "2.1.19" | |
9059 | + resolved "https://registry.npmjs.org/windicss/-/windicss-2.1.19.tgz#ba8ea65d33ff00c0b786531134fe17c0c13f84a3" | |
9060 | + integrity sha512-jqHQ6tEWt/nxN/KLvxYyqO6K0JV3nlwC5D60Hrry02G4D3h0gx/dN/3FaqC0n5EqOKCcIrDasrmclquKiJA4JQ== | |
9061 | 9061 | |
9062 | 9062 | wmf@~1.0.1: |
9063 | 9063 | version "1.0.2" | ... | ... |