Commit 8ccf778fb7ec2bffd46ce55572b855ce77a7403d

Authored by Vben
1 parent 7e564c29

workflow: update deploy workflow [deploy]

.github/workflows/deploy.yml
... ... @@ -6,17 +6,111 @@ on:
6 6 - main
7 7  
8 8 jobs:
9   - build-deploy:
  9 + push-to-ftp:
  10 + if: "contains(github.event.head_commit.message, '[deploy]')"
10 11 runs-on: ubuntu-latest
  12 + steps:
  13 + - name: Checkout
  14 + uses: actions/checkout@v2
  15 +
  16 + - name: Sed Config Base
  17 + shell: bash
  18 + run: |
  19 + sed -i 's#VITE_PUBLIC_PATH\s*=.*#VITE_PUBLIC_PATH = /next/#g' ./.env.production
  20 + sed -i "s#VITE_BUILD_COMPRESS\s*=.*#VITE_BUILD_COMPRESS = 'gzip'#g" ./.env.production
  21 + cat ./.env.production
  22 +
  23 + - name: use Node.js 14
  24 + uses: actions/setup-node@v2.1.2
  25 + with:
  26 + node-version: '14.x'
  27 +
  28 + - name: Get yarn cache
  29 + id: yarn-cache
  30 + run: echo "::set-output name=dir::$(yarn cache dir)"
  31 +
  32 + - name: Cache dependencies
  33 + uses: actions/cache@v2
  34 + with:
  35 + path: ${{ steps.yarn-cache.outputs.dir }}
  36 + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
  37 + restore-keys: |
  38 + ${{ runner.os }}-yarn-
  39 +
  40 + - name: Build
  41 + run: |
  42 + yarn install
  43 + yarn run build
  44 +
  45 + - name: Deploy
  46 + uses: SamKirkland/FTP-Deploy-Action@2.0.0
  47 + env:
  48 + FTP_SERVER: ${{ secrets.FTP_SERVER }}
  49 + FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
  50 + FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
  51 + METHOD: sftp
  52 + PORT: ${{ secrets.FTP_PORT }}
  53 + LOCAL_DIR: dist
  54 + REMOTE_DIR: /srv/www/vben-admin
  55 + ARGS: --delete --verbose --parallel=80
11 56  
  57 + push-to-gh-page:
  58 + if: "contains(github.event.head_commit.message, '[deploy]')"
  59 + runs-on: ubuntu-latest
12 60 steps:
13   - - uses: actions/checkout@v1
14   - - run: npm install
15   - - run: npm run build
  61 + - name: Checkout
  62 + uses: actions/checkout@v2
  63 +
  64 + - name: Sed Config Base
  65 + shell: bash
  66 + run: |
  67 + sed -i 's#VITE_PUBLIC_PATH\s*=.*#VITE_PUBLIC_PATH = /vue-vben-admin/#g' ./.env.production
  68 + sed -i "s#VITE_BUILD_COMPRESS\s*=.*#VITE_BUILD_COMPRESS = 'gzip'#g" ./.env.production
  69 + cat ./.env.production
  70 +
  71 + - name: use Node.js 14
  72 + uses: actions/setup-node@v2.1.2
  73 + with:
  74 + node-version: '14.x'
  75 +
  76 + - name: Get yarn cache
  77 + id: yarn-cache
  78 + run: echo "::set-output name=dir::$(yarn cache dir)"
  79 +
  80 + - name: Cache dependencies
  81 + uses: actions/cache@v2
  82 + with:
  83 + path: ${{ steps.yarn-cache.outputs.dir }}
  84 + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
  85 + restore-keys: |
  86 + ${{ runner.os }}-yarn-
  87 +
  88 + - name: Set SSH Environment
  89 + env:
  90 + DOCS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
  91 + run: |
  92 + mkdir -p ~/.ssh/
  93 + echo "$ACTIONS_DEPLOY_KEY" > ~/.ssh/id_rsa
  94 + chmod 600 ~/.ssh/id_rsa
  95 + ssh-keyscan github.com > ~/.ssh/known_hosts
  96 + chmod 700 ~/.ssh && chmod 600 ~/.ssh/*
  97 + git config --global user.email "vbenadmin@163.com"
  98 + git config --global user.name "vbenAdmin"
  99 +
  100 + - name: Delete gh-pages branch
  101 + run: |
  102 + git push origin --delete gh-pages
  103 +
  104 + - name: Build
  105 + run: |
  106 + yarn install
  107 + yarn run build
16 108  
17 109 - name: Deploy
18 110 uses: peaceiris/actions-gh-pages@v2.5.0
19 111 env:
20 112 ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
21 113 PUBLISH_BRANCH: gh-pages
22   - PUBLISH_DIR: dist
  114 + PUBLISH_DIR: ./dist
  115 + with:
  116 + forceOrphan: true
... ...
.husky/.gitignore
1   -_
2 1 \ No newline at end of file
  2 +_
... ...
CHANGELOG.zh_CN.md
... ... @@ -3,6 +3,7 @@
3 3 ### โšก Performance Improvements
4 4  
5 5 - ็™ปๅฝ•็•Œ้ขๅŠจ็”ปไผ˜ๅŒ–
  6 +- ไฟฎๅค github ไป“ๅบ“ไฝ“็งฏ่ฟ‡ๅคง้—ฎ้ข˜.
6 7  
7 8 ### ๐Ÿ› Bug Fixes
8 9  
... ...
package.json
... ... @@ -2,7 +2,6 @@
2 2 "name": "vben-admin",
3 3 "version": "2.0.1",
4 4 "scripts": {
5   - "bootstrap": "yarn install",
6 5 "serve": "vite",
7 6 "dev": "vite",
8 7 "build": "vite build && esno ./build/script/postBuild.ts",
... ... @@ -26,7 +25,7 @@
26 25 },
27 26 "dependencies": {
28 27 "@iconify/iconify": "^2.0.0-rc.6",
29   - "@vueuse/core": "^4.2.1",
  28 + "@vueuse/core": "^4.2.2",
30 29 "@zxcvbn-ts/core": "^0.2.0",
31 30 "ant-design-vue": "2.0.0",
32 31 "apexcharts": "^3.25.0",
... ... @@ -49,8 +48,8 @@
49 48 "xlsx": "^0.16.9"
50 49 },
51 50 "devDependencies": {
52   - "@commitlint/cli": "^11.0.0",
53   - "@commitlint/config-conventional": "^11.0.0",
  51 + "@commitlint/cli": "^12.0.0",
  52 + "@commitlint/config-conventional": "^12.0.0",
54 53 "@iconify/json": "^1.1.307",
55 54 "@ls-lint/ls-lint": "^1.9.2",
56 55 "@purge-icons/generated": "^0.7.0",
... ... @@ -63,8 +62,8 @@
63 62 "@types/rollup-plugin-visualizer": "^2.6.0",
64 63 "@types/sortablejs": "^1.10.6",
65 64 "@types/yargs": "^16.0.0",
66   - "@typescript-eslint/eslint-plugin": "^4.15.1",
67   - "@typescript-eslint/parser": "^4.15.1",
  65 + "@typescript-eslint/eslint-plugin": "^4.15.2",
  66 + "@typescript-eslint/parser": "^4.15.2",
68 67 "@vitejs/plugin-legacy": "^1.3.1",
69 68 "@vitejs/plugin-vue": "^1.1.4",
70 69 "@vitejs/plugin-vue-jsx": "^1.1.0",
... ... @@ -81,7 +80,7 @@
81 80 "esno": "^0.4.4",
82 81 "fs-extra": "^9.1.0",
83 82 "http-server": "^0.12.3",
84   - "husky": "^5.1.0",
  83 + "husky": "^5.1.1",
85 84 "is-ci": "^3.0.0",
86 85 "less": "^4.1.1",
87 86 "lint-staged": "^10.5.4",
... ... @@ -95,16 +94,16 @@
95 94 "stylelint-order": "^4.1.0",
96 95 "ts-node": "^9.1.1",
97 96 "typescript": "^4.1.5",
98   - "vite": "2.0.1",
99   - "vite-plugin-compression": "^0.2.1",
100   - "vite-plugin-html": "^2.0.1",
  97 + "vite": "2.0.2",
  98 + "vite-plugin-compression": "^0.2.2",
  99 + "vite-plugin-html": "^2.0.2",
101 100 "vite-plugin-imagemin": "^0.2.8",
102   - "vite-plugin-mock": "^2.1.4",
  101 + "vite-plugin-mock": "^2.1.5",
103 102 "vite-plugin-purge-icons": "^0.7.0",
104 103 "vite-plugin-pwa": "^0.5.3",
105   - "vite-plugin-style-import": "^0.7.3",
  104 + "vite-plugin-style-import": "^0.7.4",
106 105 "vite-plugin-theme": "^0.4.8",
107   - "vite-plugin-windicss": "0.4.7",
  106 + "vite-plugin-windicss": "0.4.9",
108 107 "vue-eslint-parser": "^7.5.0",
109 108 "yargs": "^16.2.0"
110 109 },
... ...
windi.config.ts
... ... @@ -44,14 +44,15 @@ function createEnterPlugin(maxOutput = 10) {
44 44 };
45 45 };
46 46 const handler = ({ addBase }) => {
  47 + const addRawCss = {};
47 48 for (let index = 1; index < maxOutput; index++) {
48   - addBase({
  49 + Object.assign(addRawCss, {
49 50 ...createCss(index, 'x'),
50 51 ...createCss(index, 'y'),
51 52 });
52 53 }
53   -
54 54 addBase({
  55 + ...addRawCss,
55 56 [`@keyframes enter-x-animation`]: {
56 57 to: {
57 58 opacity: '1',
... ...
yarn.lock
... ... @@ -881,37 +881,35 @@
881 881 lodash "^4.17.19"
882 882 to-fast-properties "^2.0.0"
883 883  
884   -"@commitlint/cli@^11.0.0":
885   - version "11.0.0"
886   - resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-11.0.0.tgz#698199bc52afed50aa28169237758fa14a67b5d3"
887   - integrity sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==
888   - dependencies:
889   - "@babel/runtime" "^7.11.2"
890   - "@commitlint/format" "^11.0.0"
891   - "@commitlint/lint" "^11.0.0"
892   - "@commitlint/load" "^11.0.0"
893   - "@commitlint/read" "^11.0.0"
894   - chalk "4.1.0"
895   - core-js "^3.6.1"
  884 +"@commitlint/cli@^12.0.0":
  885 + version "12.0.0"
  886 + resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-12.0.0.tgz#bd389db0718aa4a7dfb515ea890776223ea0c60f"
  887 + integrity sha512-9jxKu6PmBUeQIbSD7olsv8wSqFnFsGwKMN9sL5T1d5YZDCocFMgfeyDGtOwuiATsox7Mje+NucQ4zU1y0530Dw==
  888 + dependencies:
  889 + "@commitlint/format" "^12.0.0"
  890 + "@commitlint/lint" "^12.0.0"
  891 + "@commitlint/load" "^12.0.0"
  892 + "@commitlint/read" "^12.0.0"
  893 + "@commitlint/types" "^12.0.0"
896 894 get-stdin "8.0.0"
897 895 lodash "^4.17.19"
898 896 resolve-from "5.0.0"
899 897 resolve-global "1.0.0"
900   - yargs "^15.1.0"
  898 + yargs "^16.0.0"
901 899  
902   -"@commitlint/config-conventional@^11.0.0":
903   - version "11.0.0"
904   - resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-11.0.0.tgz#3fa300a1b639273946de3c3f15e1cda518333422"
905   - integrity sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==
  900 +"@commitlint/config-conventional@^12.0.0":
  901 + version "12.0.0"
  902 + resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.0.0.tgz#3244957b87b92dc2f4feb46059cdeb950783198f"
  903 + integrity sha512-zjTeCBlHEP0syW6QedRSxOiafYeuOol9vIXZ89uhKMhyejaKxdAnS3SBMN4fYiSFChsZEl+VshJeZDtUFkCd7Q==
906 904 dependencies:
907 905 conventional-changelog-conventionalcommits "^4.3.1"
908 906  
909   -"@commitlint/ensure@^11.0.0":
910   - version "11.0.0"
911   - resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-11.0.0.tgz#3e796b968ab5b72bc6f8a6040076406306c987fb"
912   - integrity sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==
  907 +"@commitlint/ensure@^12.0.0":
  908 + version "12.0.0"
  909 + resolved "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.0.0.tgz#a019bd4f4a2ea81ca3883d5f9c13bf70e786ff7f"
  910 + integrity sha512-xTPjd2cw8WOLtcrp5C3S+GtmGzA+TJjlNwqgYP61jmitLiDsTs69qNcysR9vPTyIjA1EQio4iff1bpAoilTbcg==
913 911 dependencies:
914   - "@commitlint/types" "^11.0.0"
  912 + "@commitlint/types" "^12.0.0"
915 913 lodash "^4.17.19"
916 914  
917 915 "@commitlint/execute-rule@^11.0.0":
... ... @@ -919,33 +917,38 @@
919 917 resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz#3ed60ab7a33019e58d90e2d891b75d7df77b4b4d"
920 918 integrity sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==
921 919  
922   -"@commitlint/format@^11.0.0":
923   - version "11.0.0"
924   - resolved "https://registry.npmjs.org/@commitlint/format/-/format-11.0.0.tgz#ac47b0b9ca46540c0082c721b290794e67bdc51b"
925   - integrity sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==
  920 +"@commitlint/execute-rule@^12.0.0":
  921 + version "12.0.0"
  922 + resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.0.0.tgz#4469e0c606f523d6b92e395b0fdb0701e7aa6334"
  923 + integrity sha512-X9vZDKdyOz8MNDZqJN39K9UbjQmMsyQ74d1lUaw0QuCE4jOesmynYkLc4Y4MWKqq9ElWdjswZyLMyOgm3kAMrg==
  924 +
  925 +"@commitlint/format@^12.0.0":
  926 + version "12.0.0"
  927 + resolved "https://registry.npmjs.org/@commitlint/format/-/format-12.0.0.tgz#d364c631aa35aa84f32a8afa8218a0da9f7a2ba6"
  928 + integrity sha512-otQHHx1KtT7UlO8igYeqxfatVFni6T8Nq8OPhwUHGrp8VYMorFSKUWrVpDtPtTAzRBj7e/ZtxCUOWck9Lwm7ug==
926 929 dependencies:
927   - "@commitlint/types" "^11.0.0"
  930 + "@commitlint/types" "^12.0.0"
928 931 chalk "^4.0.0"
929 932  
930   -"@commitlint/is-ignored@^11.0.0":
931   - version "11.0.0"
932   - resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz#7b803eda56276dbe7fec51eb1510676198468f39"
933   - integrity sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==
  933 +"@commitlint/is-ignored@^12.0.0":
  934 + version "12.0.0"
  935 + resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.0.0.tgz#94ec9a2995f7fb35bb197c755796fa0eafa2ae09"
  936 + integrity sha512-jo1/ee0Ly8ySG+FvAWPFq2Bt4Xdx7tyDDnwuclDw1yatv9Tu7CVSN4ae9FNiU2dVLzqIoIxCFwu9YMaMmnT+Lg==
934 937 dependencies:
935   - "@commitlint/types" "^11.0.0"
936   - semver "7.3.2"
  938 + "@commitlint/types" "^12.0.0"
  939 + semver "7.3.4"
937 940  
938   -"@commitlint/lint@^11.0.0":
939   - version "11.0.0"
940   - resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-11.0.0.tgz#01e062cd1b0e7c3d756aa2c246462e0b6a3348a4"
941   - integrity sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==
  941 +"@commitlint/lint@^12.0.0":
  942 + version "12.0.0"
  943 + resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-12.0.0.tgz#6c05432beeb45202eaecbf0366807397d46ad984"
  944 + integrity sha512-/qPhiMBoAiaBmirxQKEf8iRy2B/PvU7xgNfRI4Gy5X9hx3xRwzZHVDTs6YjTZVRCD/9i6C8ZDMUuEM5Fk0pRyQ==
942 945 dependencies:
943   - "@commitlint/is-ignored" "^11.0.0"
944   - "@commitlint/parse" "^11.0.0"
945   - "@commitlint/rules" "^11.0.0"
946   - "@commitlint/types" "^11.0.0"
  946 + "@commitlint/is-ignored" "^12.0.0"
  947 + "@commitlint/parse" "^12.0.0"
  948 + "@commitlint/rules" "^12.0.0"
  949 + "@commitlint/types" "^12.0.0"
947 950  
948   -"@commitlint/load@>6.1.1", "@commitlint/load@^11.0.0":
  951 +"@commitlint/load@>6.1.1":
949 952 version "11.0.0"
950 953 resolved "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz#f736562f0ffa7e773f8808fea93319042ee18211"
951 954 integrity sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==
... ... @@ -958,25 +961,40 @@
958 961 lodash "^4.17.19"
959 962 resolve-from "^5.0.0"
960 963  
961   -"@commitlint/message@^11.0.0":
962   - version "11.0.0"
963   - resolved "https://registry.npmjs.org/@commitlint/message/-/message-11.0.0.tgz#83554c3cbbc884fd07b473593bc3e94bcaa3ee05"
964   - integrity sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==
  964 +"@commitlint/load@^12.0.0":
  965 + version "12.0.0"
  966 + resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.0.0.tgz#d0cd58bd6c3f5184ae542b6fbcdea37c5c671e32"
  967 + integrity sha512-B7rwRGWE3j+4dWsLD4s82fIbIJP1xGOJYfAvKDWOa/FnAb8s8ZQOK8HHuDC8BD/MU3Ierl8KJMfzGiO63d1rlA==
  968 + dependencies:
  969 + "@commitlint/execute-rule" "^12.0.0"
  970 + "@commitlint/resolve-extends" "^12.0.0"
  971 + "@commitlint/types" "^12.0.0"
  972 + chalk "^4.0.0"
  973 + cosmiconfig "^7.0.0"
  974 + lodash "^4.17.19"
  975 + resolve-from "^5.0.0"
965 976  
966   -"@commitlint/parse@^11.0.0":
967   - version "11.0.0"
968   - resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-11.0.0.tgz#d18b08cf67c35d02115207d7009306a2e8e7c901"
969   - integrity sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==
  977 +"@commitlint/message@^12.0.0":
  978 + version "12.0.0"
  979 + resolved "https://registry.npmjs.org/@commitlint/message/-/message-12.0.0.tgz#37587f487961e89e13ef0fe90ba66ca91b901a1e"
  980 + integrity sha512-jSyL6Po/IsYin6OGoeazcUDkxTYW4l83c2HiUoBKLYgvzMLyCy5jrW/ijKXK6hC/9A0nY00Zdi4iY7pA0gNSuA==
  981 +
  982 +"@commitlint/parse@^12.0.0":
  983 + version "12.0.0"
  984 + resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-12.0.0.tgz#e4d1ba1333c6c41ad9d1c1d2469b7c378ed36a52"
  985 + integrity sha512-CcSNSwQlKTJtnPPaGlKrClV4wOPUKH5fZ2AE+M+QQlTcp5IchgASzpqwPjMaeeP5FwnBiDZ98AtV9ZqqkKy2kg==
970 986 dependencies:
971   - conventional-changelog-angular "^5.0.0"
  987 + "@commitlint/types" "^12.0.0"
  988 + conventional-changelog-angular "^5.0.11"
972 989 conventional-commits-parser "^3.0.0"
973 990  
974   -"@commitlint/read@^11.0.0":
975   - version "11.0.0"
976   - resolved "https://registry.npmjs.org/@commitlint/read/-/read-11.0.0.tgz#f24240548c63587bba139fa5a364cab926077016"
977   - integrity sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==
  991 +"@commitlint/read@^12.0.0":
  992 + version "12.0.0"
  993 + resolved "https://registry.npmjs.org/@commitlint/read/-/read-12.0.0.tgz#556894663614b1a22156673250e517be18f657c6"
  994 + integrity sha512-xOply23eCsbIvqXMkrjrxhryClBu6rRPhEVxahihhcNQ2x9SskHTlEr3o6BljqCWfIxNNZL9s2TVqkOjEmkskw==
978 995 dependencies:
979   - "@commitlint/top-level" "^11.0.0"
  996 + "@commitlint/top-level" "^12.0.0"
  997 + "@commitlint/types" "^12.0.0"
980 998 fs-extra "^9.0.0"
981 999 git-raw-commits "^2.0.0"
982 1000  
... ... @@ -990,25 +1008,35 @@
990 1008 resolve-from "^5.0.0"
991 1009 resolve-global "^1.0.0"
992 1010  
993   -"@commitlint/rules@^11.0.0":
994   - version "11.0.0"
995   - resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-11.0.0.tgz#bdb310cc6fc55c9f8d7d917a22b69055c535c375"
996   - integrity sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==
  1011 +"@commitlint/resolve-extends@^12.0.0":
  1012 + version "12.0.0"
  1013 + resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.0.0.tgz#78b5c53c9b3ab496095b5ff612a5e6693f32250c"
  1014 + integrity sha512-5i0ZieVFzXuRqyYxnoEJ7InYyXQC/K98nF75Ro6wVQqpmzi01/KHYwo8uCcy1Q+rPB48FSmCB84br0t5Ulr/KA==
997 1015 dependencies:
998   - "@commitlint/ensure" "^11.0.0"
999   - "@commitlint/message" "^11.0.0"
1000   - "@commitlint/to-lines" "^11.0.0"
1001   - "@commitlint/types" "^11.0.0"
  1016 + import-fresh "^3.0.0"
  1017 + lodash "^4.17.19"
  1018 + resolve-from "^5.0.0"
  1019 + resolve-global "^1.0.0"
1002 1020  
1003   -"@commitlint/to-lines@^11.0.0":
1004   - version "11.0.0"
1005   - resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-11.0.0.tgz#86dea151c10eea41e39ea96fa4de07839258a7fe"
1006   - integrity sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==
  1021 +"@commitlint/rules@^12.0.0":
  1022 + version "12.0.0"
  1023 + resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-12.0.0.tgz#81bfb00adbd9a4c876be40f30eaf8dd5938a5a41"
  1024 + integrity sha512-VO9UqtivXRMko7GpgUOkKSixWuihKxJYmLBrcdw5TcPD8Ott0wgFGWE65n67wTfikW7aLZLzGiybuopZHIdP/w==
  1025 + dependencies:
  1026 + "@commitlint/ensure" "^12.0.0"
  1027 + "@commitlint/message" "^12.0.0"
  1028 + "@commitlint/to-lines" "^12.0.0"
  1029 + "@commitlint/types" "^12.0.0"
1007 1030  
1008   -"@commitlint/top-level@^11.0.0":
1009   - version "11.0.0"
1010   - resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-11.0.0.tgz#bb2d1b6e5ed3be56874633b59e1f7de118c32783"
1011   - integrity sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==
  1031 +"@commitlint/to-lines@^12.0.0":
  1032 + version "12.0.0"
  1033 + resolved "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.0.0.tgz#b015bf50ae4e652e8254c145329072723a88e070"
  1034 + integrity sha512-hRZQTDkBUA7eDDlvbRLrXl/HRK3yA6Cbnd+TvxDc79MlsMH5affLtDfdJICE8SSkN2AFxIzHcSysBPxJvSvcKQ==
  1035 +
  1036 +"@commitlint/top-level@^12.0.0":
  1037 + version "12.0.0"
  1038 + resolved "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.0.0.tgz#9076da970d3c44df3a83051405f4e6841a35cc37"
  1039 + integrity sha512-Y7UfYZyi0q+jj0Yh81HVtTvstupVh6b+a7eUnSvmAWyDdMRfVBoE2hjuT6DY3W2xv1xuJ4DUHJu64BUr6FOkMQ==
1012 1040 dependencies:
1013 1041 find-up "^5.0.0"
1014 1042  
... ... @@ -1017,6 +1045,13 @@
1017 1045 resolved "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz#719cf05fcc1abb6533610a2e0f5dd1e61eac14fe"
1018 1046 integrity sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==
1019 1047  
  1048 +"@commitlint/types@^12.0.0":
  1049 + version "12.0.0"
  1050 + resolved "https://registry.npmjs.org/@commitlint/types/-/types-12.0.0.tgz#c7f27b87e3ceac08a9b8a6f200054709c2a64271"
  1051 + integrity sha512-ADW/GEwDdgf7ppNq+S2T8J6XgATi2yndXddu+ZV8wlHFpL1DhjPbuPA9RYLnJcp44xQSe/cEV7a7Z43Ryy1S9Q==
  1052 + dependencies:
  1053 + chalk "^4.0.0"
  1054 +
1020 1055 "@ctrl/tinycolor@^3.3.1":
1021 1056 version "3.3.3"
1022 1057 resolved "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.3.3.tgz#980487763bc7c9238d6d88d1ac0dee2d4df3df68"
... ... @@ -1178,10 +1213,10 @@
1178 1213 "@babel/helper-module-imports" "^7.10.4"
1179 1214 "@rollup/pluginutils" "^3.1.0"
1180 1215  
1181   -"@rollup/plugin-node-resolve@^11.1.1":
1182   - version "11.1.1"
1183   - resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.1.1.tgz#47bc34252914794a1b06fb50371d7520a03f91f3"
1184   - integrity sha512-zlBXR4eRS+2m79TsUZWhsd0slrHUYdRx4JF+aVQm+MI0wsKdlpC2vlDVjmlGvtZY1vsefOT9w3JxvmWSBei+Lg==
  1216 +"@rollup/plugin-node-resolve@^11.2.0":
  1217 + version "11.2.0"
  1218 + resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.0.tgz#a5ab88c35bb7622d115f44984dee305112b6f714"
  1219 + integrity sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA==
1185 1220 dependencies:
1186 1221 "@rollup/pluginutils" "^3.1.0"
1187 1222 "@types/resolve" "1.17.1"
... ... @@ -1458,13 +1493,13 @@
1458 1493 dependencies:
1459 1494 "@types/yargs-parser" "*"
1460 1495  
1461   -"@typescript-eslint/eslint-plugin@^4.15.1":
1462   - version "4.15.1"
1463   - resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.1.tgz#835f64aa0a403e5e9e64c10ceaf8d05c3f015180"
1464   - integrity sha512-yW2epMYZSpNJXZy22Biu+fLdTG8Mn6b22kR3TqblVk50HGNV8Zya15WAXuQCr8tKw4Qf1BL4QtI6kv6PCkLoJw==
  1496 +"@typescript-eslint/eslint-plugin@^4.15.2":
  1497 + version "4.15.2"
  1498 + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.2.tgz#981b26b4076c62a5a55873fbef3fe98f83360c61"
  1499 + integrity sha512-uiQQeu9tWl3f1+oK0yoAv9lt/KXO24iafxgQTkIYO/kitruILGx3uH+QtIAHqxFV+yIsdnJH+alel9KuE3J15Q==
1465 1500 dependencies:
1466   - "@typescript-eslint/experimental-utils" "4.15.1"
1467   - "@typescript-eslint/scope-manager" "4.15.1"
  1501 + "@typescript-eslint/experimental-utils" "4.15.2"
  1502 + "@typescript-eslint/scope-manager" "4.15.2"
1468 1503 debug "^4.1.1"
1469 1504 functional-red-black-tree "^1.0.1"
1470 1505 lodash "^4.17.15"
... ... @@ -1472,60 +1507,60 @@
1472 1507 semver "^7.3.2"
1473 1508 tsutils "^3.17.1"
1474 1509  
1475   -"@typescript-eslint/experimental-utils@4.15.1":
1476   - version "4.15.1"
1477   - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.1.tgz#d744d1ac40570a84b447f7aa1b526368afd17eec"
1478   - integrity sha512-9LQRmOzBRI1iOdJorr4jEnQhadxK4c9R2aEAsm7WE/7dq8wkKD1suaV0S/JucTL8QlYUPU1y2yjqg+aGC0IQBQ==
  1510 +"@typescript-eslint/experimental-utils@4.15.2":
  1511 + version "4.15.2"
  1512 + resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.2.tgz#5efd12355bd5b535e1831282e6cf465b9a71cf36"
  1513 + integrity sha512-Fxoshw8+R5X3/Vmqwsjc8nRO/7iTysRtDqx6rlfLZ7HbT8TZhPeQqbPjTyk2RheH3L8afumecTQnUc9EeXxohQ==
1479 1514 dependencies:
1480 1515 "@types/json-schema" "^7.0.3"
1481   - "@typescript-eslint/scope-manager" "4.15.1"
1482   - "@typescript-eslint/types" "4.15.1"
1483   - "@typescript-eslint/typescript-estree" "4.15.1"
  1516 + "@typescript-eslint/scope-manager" "4.15.2"
  1517 + "@typescript-eslint/types" "4.15.2"
  1518 + "@typescript-eslint/typescript-estree" "4.15.2"
1484 1519 eslint-scope "^5.0.0"
1485 1520 eslint-utils "^2.0.0"
1486 1521  
1487   -"@typescript-eslint/parser@^4.15.1":
1488   - version "4.15.1"
1489   - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.1.tgz#4c91a0602733db63507e1dbf13187d6c71a153c4"
1490   - integrity sha512-V8eXYxNJ9QmXi5ETDguB7O9diAXlIyS+e3xzLoP/oVE4WCAjssxLIa0mqCLsCGXulYJUfT+GV70Jv1vHsdKwtA==
  1522 +"@typescript-eslint/parser@^4.15.2":
  1523 + version "4.15.2"
  1524 + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.2.tgz#c804474321ef76a3955aec03664808f0d6e7872e"
  1525 + integrity sha512-SHeF8xbsC6z2FKXsaTb1tBCf0QZsjJ94H6Bo51Y1aVEZ4XAefaw5ZAilMoDPlGghe+qtq7XdTiDlGfVTOmvA+Q==
1491 1526 dependencies:
1492   - "@typescript-eslint/scope-manager" "4.15.1"
1493   - "@typescript-eslint/types" "4.15.1"
1494   - "@typescript-eslint/typescript-estree" "4.15.1"
  1527 + "@typescript-eslint/scope-manager" "4.15.2"
  1528 + "@typescript-eslint/types" "4.15.2"
  1529 + "@typescript-eslint/typescript-estree" "4.15.2"
1495 1530 debug "^4.1.1"
1496 1531  
1497   -"@typescript-eslint/scope-manager@4.15.1":
1498   - version "4.15.1"
1499   - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.1.tgz#f6511eb38def2a8a6be600c530c243bbb56ac135"
1500   - integrity sha512-ibQrTFcAm7yG4C1iwpIYK7vDnFg+fKaZVfvyOm3sNsGAerKfwPVFtYft5EbjzByDJ4dj1WD8/34REJfw/9wdVA==
  1532 +"@typescript-eslint/scope-manager@4.15.2":
  1533 + version "4.15.2"
  1534 + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.2.tgz#5725bda656995960ae1d004bfd1cd70320f37f4f"
  1535 + integrity sha512-Zm0tf/MSKuX6aeJmuXexgdVyxT9/oJJhaCkijv0DvJVT3ui4zY6XYd6iwIo/8GEZGy43cd7w1rFMiCLHbRzAPQ==
1501 1536 dependencies:
1502   - "@typescript-eslint/types" "4.15.1"
1503   - "@typescript-eslint/visitor-keys" "4.15.1"
  1537 + "@typescript-eslint/types" "4.15.2"
  1538 + "@typescript-eslint/visitor-keys" "4.15.2"
1504 1539  
1505   -"@typescript-eslint/types@4.15.1":
1506   - version "4.15.1"
1507   - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.1.tgz#da702f544ef1afae4bc98da699eaecd49cf31c8c"
1508   - integrity sha512-iGsaUyWFyLz0mHfXhX4zO6P7O3sExQpBJ2dgXB0G5g/8PRVfBBsmQIc3r83ranEQTALLR3Vko/fnCIVqmH+mPw==
  1540 +"@typescript-eslint/types@4.15.2":
  1541 + version "4.15.2"
  1542 + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.2.tgz#04acf3a2dc8001a88985291744241e732ef22c60"
  1543 + integrity sha512-r7lW7HFkAarfUylJ2tKndyO9njwSyoy6cpfDKWPX6/ctZA+QyaYscAHXVAfJqtnY6aaTwDYrOhp+ginlbc7HfQ==
1509 1544  
1510   -"@typescript-eslint/typescript-estree@4.15.1":
1511   - version "4.15.1"
1512   - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.1.tgz#fa9a9ff88b4a04d901ddbe5b248bc0a00cd610be"
1513   - integrity sha512-z8MN3CicTEumrWAEB2e2CcoZa3KP9+SMYLIA2aM49XW3cWIaiVSOAGq30ffR5XHxRirqE90fgLw3e6WmNx5uNw==
  1545 +"@typescript-eslint/typescript-estree@4.15.2":
  1546 + version "4.15.2"
  1547 + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.2.tgz#c2f7a1e94f3428d229d5ecff3ead6581ee9b62fa"
  1548 + integrity sha512-cGR8C2g5SPtHTQvAymEODeqx90pJHadWsgTtx6GbnTWKqsg7yp6Eaya9nFzUd4KrKhxdYTTFBiYeTPQaz/l8bw==
1514 1549 dependencies:
1515   - "@typescript-eslint/types" "4.15.1"
1516   - "@typescript-eslint/visitor-keys" "4.15.1"
  1550 + "@typescript-eslint/types" "4.15.2"
  1551 + "@typescript-eslint/visitor-keys" "4.15.2"
1517 1552 debug "^4.1.1"
1518 1553 globby "^11.0.1"
1519 1554 is-glob "^4.0.1"
1520 1555 semver "^7.3.2"
1521 1556 tsutils "^3.17.1"
1522 1557  
1523   -"@typescript-eslint/visitor-keys@4.15.1":
1524   - version "4.15.1"
1525   - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.1.tgz#c76abbf2a3be8a70ed760f0e5756bf62de5865dd"
1526   - integrity sha512-tYzaTP9plooRJY8eNlpAewTOqtWW/4ff/5wBjNVaJ0S0wC4Gpq/zDVRTJa5bq2v1pCNQ08xxMCndcvR+h7lMww==
  1558 +"@typescript-eslint/visitor-keys@4.15.2":
  1559 + version "4.15.2"
  1560 + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.2.tgz#3d1c7979ce75bf6acf9691109bd0d6b5706192b9"
  1561 + integrity sha512-TME1VgSb7wTwgENN5KVj4Nqg25hP8DisXxNBojM4Nn31rYaNDIocNm5cmjOFfh42n7NVERxWrDFoETO/76ePyg==
1527 1562 dependencies:
1528   - "@typescript-eslint/types" "4.15.1"
  1563 + "@typescript-eslint/types" "4.15.2"
1529 1564 eslint-visitor-keys "^2.0.0"
1530 1565  
1531 1566 "@vitejs/plugin-legacy@^1.3.1":
... ... @@ -1658,31 +1693,31 @@
1658 1693 resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0"
1659 1694 integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==
1660 1695  
1661   -"@vueuse/core@^4.2.1":
1662   - version "4.2.1"
1663   - resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.2.1.tgz#ac72801c67f26315723d4d244e843c28047f7bc4"
1664   - integrity sha512-V8KohPwbIN9t5ZWfqB+TJhzM2iwrugq78t6I1QwoGdaw9fdbQfHJiiaf83MGxgYO2B9IwVtuYc4Vjd9X/0Kppg==
  1696 +"@vueuse/core@^4.2.2":
  1697 + version "4.2.2"
  1698 + resolved "https://registry.npmjs.org/@vueuse/core/-/core-4.2.2.tgz#ecbba4ba05e0360e9c9079b32e149fac803a1020"
  1699 + integrity sha512-NMU3Vr4eBiNrPzCoUH5ptNj+DETg85Vtww0OJjaQEXobDTH28gzbLJseqCh4m3NYR92C5qlXRnzhSvWOoR/uLg==
1665 1700 dependencies:
1666   - "@vueuse/shared" "4.2.1"
  1701 + "@vueuse/shared" "4.2.2"
1667 1702 vue-demi latest
1668 1703  
1669   -"@vueuse/shared@4.2.1":
1670   - version "4.2.1"
1671   - resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.2.1.tgz#67e3229e7df68e2c4225d0086537e3a972fe89eb"
1672   - integrity sha512-lSrzRHRzdqf4LTczeTrVmRd4cmJ6D1u77fJ2E9gksfKHZs+zwSZku7EiAqVj/g1nqZglTu5Z4y6aE6dp3YLYWw==
  1704 +"@vueuse/shared@4.2.2":
  1705 + version "4.2.2"
  1706 + resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-4.2.2.tgz#e52ee278b929f028117c0ca1792b24df462bff80"
  1707 + integrity sha512-yudh4jt0SxaW0i3j2iumI8GTloA8aUpLwGaBw9Xv2rQCdZvOZpXpvpGEz8EsMK793ySs+d5S4/opItlxuzjtSg==
1673 1708 dependencies:
1674 1709 vue-demi latest
1675 1710  
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==
  1711 +"@windicss/plugin-utils@0.4.9":
  1712 + version "0.4.9"
  1713 + resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-0.4.9.tgz#d2f61423c82421cf5507374120691ea39127d060"
  1714 + integrity sha512-dD1Fagdtunr5om8SQMoJyxsFRL1Gh4JqEWlCIWxduMddHbY+S+4Atwifehy6T/2dCoyaGxlLk5yHbeNEdw40eA==
1680 1715 dependencies:
1681 1716 esbuild "^0.8.50"
1682 1717 esbuild-register "^2.0.0"
1683 1718 fast-glob "^3.2.5"
1684 1719 micromatch "^4.0.2"
1685   - windicss "^2.1.19"
  1720 + windicss "^2.2.0"
1686 1721  
1687 1722 "@zxcvbn-ts/core@^0.2.0":
1688 1723 version "0.2.0"
... ... @@ -2502,15 +2537,6 @@ cliui@^5.0.0:
2502 2537 strip-ansi "^5.2.0"
2503 2538 wrap-ansi "^5.1.0"
2504 2539  
2505   -cliui@^6.0.0:
2506   - version "6.0.0"
2507   - resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
2508   - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
2509   - dependencies:
2510   - string-width "^4.2.0"
2511   - strip-ansi "^6.0.0"
2512   - wrap-ansi "^6.2.0"
2513   -
2514 2540 cliui@^7.0.2:
2515 2541 version "7.0.4"
2516 2542 resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
... ... @@ -2722,7 +2748,7 @@ content-type@~1.0.4:
2722 2748 resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
2723 2749 integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
2724 2750  
2725   -conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.12:
  2751 +conventional-changelog-angular@^5.0.11, conventional-changelog-angular@^5.0.12:
2726 2752 version "5.0.12"
2727 2753 resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9"
2728 2754 integrity sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw==
... ... @@ -2912,7 +2938,7 @@ core-js-compat@^3.8.0:
2912 2938 browserslist "^4.16.1"
2913 2939 semver "7.0.0"
2914 2940  
2915   -core-js@^3.6.1, core-js@^3.8.0, core-js@^3.8.2:
  2941 +core-js@^3.8.0, core-js@^3.8.2:
2916 2942 version "3.8.3"
2917 2943 resolved "https://registry.npmjs.org/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0"
2918 2944 integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==
... ... @@ -3560,15 +3586,10 @@ esbuild-register@^2.0.0:
3560 3586 source-map-support "^0.5.19"
3561 3587 strip-json-comments "^3.1.1"
3562 3588  
3563   -esbuild@^0.8.34:
3564   - version "0.8.34"
3565   - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.34.tgz#16b4ac58f74c821d2c5a8c2f0585ca96a38ab4e6"
3566   - integrity sha512-tnr0V1ooakYr1aRLXQLzCn2GVG1kBTW3FWpRyC+NgrR3ntsouVpJOlTOV0BS4YLATx3/c+x3h/uBq9lWJlUAtQ==
3567   -
3568   -esbuild@^0.8.39:
3569   - version "0.8.42"
3570   - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.42.tgz#26101cf17fe4c4602c7c767e3177cf0c538073ac"
3571   - integrity sha512-zUtj5RMqROCCCH0vV/a7cd8YQg8I0GWBhV3A3PklWRT+oM/YwVbnrtFnITzE1otGdnXplWHWdZ4OcYiV0PN+JQ==
  3589 +esbuild@^0.8.47:
  3590 + version "0.8.51"
  3591 + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.51.tgz#1a59f1fee34892f143b7009081f9b4901a564b93"
  3592 + integrity sha512-MVIom8fgL1+B6iGqWtrG7QJ1gqd64BycxounlsX1kR/IcIITaSlTo7gghKpg4a+bnxkpo0dwcikuvk4MVSA9ww==
3572 3593  
3573 3594 esbuild@^0.8.48:
3574 3595 version "0.8.48"
... ... @@ -4769,10 +4790,10 @@ human-signals@^1.1.1:
4769 4790 resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
4770 4791 integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
4771 4792  
4772   -husky@^5.1.0:
4773   - version "5.1.0"
4774   - resolved "https://registry.npmjs.org/husky/-/husky-5.1.0.tgz#68b1148523acc838af0655ead71bf4671adb9f93"
4775   - integrity sha512-Os0EY2haOO+59YZSwMiUDsHY43RFwBVIRStHcnnT8/kvA+sFfaA/YS4uLFRiymXYgQl6E6TQTt3y4v/Z2ctEtw==
  4793 +husky@^5.1.1:
  4794 + version "5.1.1"
  4795 + resolved "https://registry.npmjs.org/husky/-/husky-5.1.1.tgz#8678953fd8deb86f387cbf1ad50bb2f7f96e83f2"
  4796 + integrity sha512-80LZ736V0Nr4/st0c2COYaMbEQhHNmAbLMN8J/kLk7/mo0QdUkUGNDjv/7jVkhug377Wh8wfbWyaVXEJ/h2B/Q==
4776 4797  
4777 4798 iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4:
4778 4799 version "0.4.24"
... ... @@ -7475,13 +7496,20 @@ rollup@^2.25.0:
7475 7496 optionalDependencies:
7476 7497 fsevents "~2.1.2"
7477 7498  
7478   -rollup@^2.38.4, rollup@^2.38.5:
  7499 +rollup@^2.38.5:
7479 7500 version "2.38.5"
7480 7501 resolved "https://registry.npmjs.org/rollup/-/rollup-2.38.5.tgz#be41ad4fe0c103a8794377afceb5f22b8f603d6a"
7481 7502 integrity sha512-VoWt8DysFGDVRGWuHTqZzT02J0ASgjVq/hPs9QcBOGMd7B+jfTr/iqMVEyOi901rE3xq+Deq66GzIT1yt7sGwQ==
7482 7503 optionalDependencies:
7483 7504 fsevents "~2.3.1"
7484 7505  
  7506 +rollup@^2.39.0:
  7507 + version "2.39.1"
  7508 + resolved "https://registry.npmjs.org/rollup/-/rollup-2.39.1.tgz#7afd4cefd8a332c5102a8063d301fde1f31a9173"
  7509 + integrity sha512-9rfr0Z6j+vE+eayfNVFr1KZ+k+jiUl2+0e4quZafy1x6SFCjzFspfRSO2ZZQeWeX9noeDTUDgg6eCENiEPFvQg==
  7510 + optionalDependencies:
  7511 + fsevents "~2.3.1"
  7512 +
7485 7513 run-async@^2.2.0:
7486 7514 version "2.4.1"
7487 7515 resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
... ... @@ -7572,23 +7600,18 @@ semver@7.0.0:
7572 7600 resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
7573 7601 integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
7574 7602  
7575   -semver@7.3.2:
7576   - version "7.3.2"
7577   - resolved "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
7578   - integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
7579   -
7580   -semver@^6.0.0:
7581   - version "6.3.0"
7582   - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
7583   - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
7584   -
7585   -semver@^7.2.1, semver@^7.3.2:
  7603 +semver@7.3.4, semver@^7.2.1, semver@^7.3.2:
7586 7604 version "7.3.4"
7587 7605 resolved "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97"
7588 7606 integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
7589 7607 dependencies:
7590 7608 lru-cache "^6.0.0"
7591 7609  
  7610 +semver@^6.0.0:
  7611 + version "6.3.0"
  7612 + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
  7613 + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
  7614 +
7592 7615 sentence-case@^3.0.4:
7593 7616 version "3.0.4"
7594 7617 resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f"
... ... @@ -8829,19 +8852,19 @@ vfile@^4.0.0:
8829 8852 unist-util-stringify-position "^2.0.0"
8830 8853 vfile-message "^2.0.0"
8831 8854  
8832   -vite-plugin-compression@^0.2.1:
8833   - version "0.2.1"
8834   - resolved "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.2.1.tgz#9519f2838c9945fa5f64dda2e9a7c354e86a6d43"
8835   - integrity sha512-wZilE9pm1qV3PNVzMxCrJkhmnpwtXrf8kC1NekNcvP5lxFbGMwhj0fqedds1ujFSBHripknQaPwLsSXRtFen/Q==
  8855 +vite-plugin-compression@^0.2.2:
  8856 + version "0.2.2"
  8857 + resolved "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.2.2.tgz#943a0ae209f70e7917c73ee4b5dffc02b9195041"
  8858 + integrity sha512-QxMKUhFsTMi3XVsgTEYYrGFcU7YF69eS0JFOgMx68rDSJGgFV4Mov7mb94Fp8UN7lo8wKP7ZvM/WkeCPtd7c+g==
8836 8859 dependencies:
8837 8860 chalk "^4.1.0"
8838 8861 debug "^4.3.2"
8839 8862 fs-extra "^9.1.0"
8840 8863  
8841   -vite-plugin-html@^2.0.1:
8842   - version "2.0.1"
8843   - resolved "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-2.0.1.tgz#6a8fa9a705024aa47e03b9b990c650773e2bd29b"
8844   - integrity sha512-qmoPTTkajxCuctxoAreIF9JW6HjrUr6hKJWLHnwRPoBd9SNzcyDwI6cW4gd4DQy2zHcQA7dD8LzgmT1Qz0vvgw==
  8864 +vite-plugin-html@^2.0.2:
  8865 + version "2.0.2"
  8866 + resolved "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-2.0.2.tgz#3c109f8535252e133977f136b566241c8d5ca8bd"
  8867 + integrity sha512-j1edPKZiQwvb7bxilaOrmcA+j+r38e0qkQ1RsS1KZxfrzZdjLWlXiOUaNoDCpdZ7UvXK4MR3JwAm/89HUTvSVg==
8845 8868 dependencies:
8846 8869 ejs "^3.1.6"
8847 8870 fs-extra "^9.1.0"
... ... @@ -8870,12 +8893,12 @@ vite-plugin-imagemin@^0.2.8:
8870 8893 imagemin-svgo "^8.0.0"
8871 8894 imagemin-webp "^6.0.0"
8872 8895  
8873   -vite-plugin-mock@^2.1.4:
8874   - version "2.1.4"
8875   - resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.1.4.tgz#b1f91418e7ed4678c969d5581276fe68c27a27d0"
8876   - integrity sha512-3qYMDZ7jmTVk7mxPpKEgnbA6B19NKvkuEzpZrKq3I9yJH1tjsTIQi/t3EaH2rXJip4EZff6NRJO8aarW3OAsOg==
  8896 +vite-plugin-mock@^2.1.5:
  8897 + version "2.1.5"
  8898 + resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.1.5.tgz#ab0868cdba49d1357ba61e098b2e6d82ab872a60"
  8899 + integrity sha512-/hFifHvf7I4bTkD2PyVw8pu/nUKDdnXcPxZQMZq0bId/5Z8l2iTPwVkFyyuJb38h0eGTPojqeHK8JALWfS9sCQ==
8877 8900 dependencies:
8878   - "@rollup/plugin-node-resolve" "^11.1.1"
  8901 + "@rollup/plugin-node-resolve" "^11.2.0"
8879 8902 "@types/mockjs" "^1.0.3"
8880 8903 body-parser "^1.19.0"
8881 8904 chalk "^4.1.0"
... ... @@ -8883,9 +8906,9 @@ vite-plugin-mock@^2.1.4:
8883 8906 connect "^3.7.0"
8884 8907 dayjs "^1.10.4"
8885 8908 debug "^4.3.2"
8886   - esbuild "^0.8.39"
  8909 + esbuild "^0.8.50"
8887 8910 fast-glob "^3.2.5"
8888   - rollup "^2.38.4"
  8911 + rollup "^2.39.0"
8889 8912 rollup-plugin-esbuild "^2.6.1"
8890 8913  
8891 8914 vite-plugin-purge-icons@^0.7.0:
... ... @@ -8907,14 +8930,14 @@ vite-plugin-pwa@^0.5.3:
8907 8930 pretty-bytes "^5.5.0"
8908 8931 workbox-build "^6.1.0"
8909 8932  
8910   -vite-plugin-style-import@^0.7.3:
8911   - version "0.7.3"
8912   - resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.7.3.tgz#4a9fb08bf5f2fc4796391c9be9a587ecb5c97e9e"
8913   - integrity sha512-oKM6vOl7iWaB5U1HcR5oM1oPRhT1n5yJt7h4h9jwpMPCD5ckHPcSjjSU7ZlOJkoS/IWEnDkQqoZi162bOs1rTQ==
  8933 +vite-plugin-style-import@^0.7.4:
  8934 + version "0.7.4"
  8935 + resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-0.7.4.tgz#999d8930db67ff0b3786bca25187cc1dc734befa"
  8936 + integrity sha512-a9f44QXEz7D/YLmykkK1Oif9IOOsqfHZRjsaNBwpWdcF7zfL4OE93Z8Xm++Qm+jUuHLuo9BGcfDAwY7+ObxRkQ==
8914 8937 dependencies:
8915 8938 "@rollup/pluginutils" "^4.1.0"
8916 8939 change-case "^4.1.2"
8917   - debug "^4.3.1"
  8940 + debug "^4.3.2"
8918 8941 es-module-lexer "^0.3.26"
8919 8942 magic-string "^0.25.7"
8920 8943  
... ... @@ -8930,20 +8953,20 @@ vite-plugin-theme@^0.4.8:
8930 8953 es-module-lexer "^0.3.26"
8931 8954 tinycolor2 "^1.4.2"
8932 8955  
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==
  8956 +vite-plugin-windicss@0.4.9:
  8957 + version "0.4.9"
  8958 + resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-0.4.9.tgz#af7fdfb5b23487e562fa7f7f78c6ea42633df719"
  8959 + integrity sha512-Q5S2fnVyOcAA12ERHLbXwCzr6NWQmCOluUVtlnKW29liMv7rN3k21bokyLlL+S7o23MLtK5Dbi54FuNqMQGibA==
8937 8960 dependencies:
8938   - "@windicss/plugin-utils" "0.4.7"
8939   - windicss "^2.1.19"
  8961 + "@windicss/plugin-utils" "0.4.9"
  8962 + windicss "^2.2.0"
8940 8963  
8941   -vite@2.0.1:
8942   - version "2.0.1"
8943   - resolved "https://registry.npmjs.org/vite/-/vite-2.0.1.tgz#348fc5c0de510aa90bd01ecf87df210ce741b38e"
8944   - integrity sha512-x7ZfikjNs+6n4cdvwb9L5r5xBCdjmtmHFHaI4JVR3nAkJbMCK/dynfDWky8/NseZ9Ncz1jVxTQ/Bcf+n1ps1Ww==
  8964 +vite@2.0.2:
  8965 + version "2.0.2"
  8966 + resolved "https://registry.npmjs.org/vite/-/vite-2.0.2.tgz#d984528b5a1c8e725d2804245751769b11d671cf"
  8967 + integrity sha512-X+PTIPRt6/5Odf/h0kBkwkck+YC0I6oKH5+ttA9ytoLyC9yeksktVq1KNzImqB+/1CNBiBE2vr7orcgSxAi67w==
8945 8968 dependencies:
8946   - esbuild "^0.8.34"
  8969 + esbuild "^0.8.47"
8947 8970 postcss "^8.2.1"
8948 8971 resolve "^1.19.0"
8949 8972 rollup "^2.38.5"
... ... @@ -9054,10 +9077,10 @@ which@^2.0.1:
9054 9077 dependencies:
9055 9078 isexe "^2.0.0"
9056 9079  
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==
  9080 +windicss@^2.2.0:
  9081 + version "2.2.0"
  9082 + resolved "https://registry.npmjs.org/windicss/-/windicss-2.2.0.tgz#42fe83b9bff6d4fc9caf85272fb6c6ddb990fbc1"
  9083 + integrity sha512-UuPhwe/NMgGOmUMnaTR+64eMeoiRCYb/zKJfo4pm9XUb4BRFlaFMm1x0KF1RF8EtK/8jKvDlXMc/J6UPBj8/OA==
9061 9084  
9062 9085 wmf@~1.0.1:
9063 9086 version "1.0.2"
... ... @@ -9335,14 +9358,6 @@ yargs-parser@^13.1.2:
9335 9358 camelcase "^5.0.0"
9336 9359 decamelize "^1.2.0"
9337 9360  
9338   -yargs-parser@^18.1.2:
9339   - version "18.1.3"
9340   - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
9341   - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
9342   - dependencies:
9343   - camelcase "^5.0.0"
9344   - decamelize "^1.2.0"
9345   -
9346 9361 yargs-parser@^20.2.2, yargs-parser@^20.2.3:
9347 9362 version "20.2.4"
9348 9363 resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
... ... @@ -9364,24 +9379,7 @@ yargs@^13.2.4:
9364 9379 y18n "^4.0.0"
9365 9380 yargs-parser "^13.1.2"
9366 9381  
9367   -yargs@^15.1.0:
9368   - version "15.4.1"
9369   - resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
9370   - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
9371   - dependencies:
9372   - cliui "^6.0.0"
9373   - decamelize "^1.2.0"
9374   - find-up "^4.1.0"
9375   - get-caller-file "^2.0.1"
9376   - require-directory "^2.1.1"
9377   - require-main-filename "^2.0.0"
9378   - set-blocking "^2.0.0"
9379   - string-width "^4.2.0"
9380   - which-module "^2.0.0"
9381   - y18n "^4.0.0"
9382   - yargs-parser "^18.1.2"
9383   -
9384   -yargs@^16.0.3, yargs@^16.2.0:
  9382 +yargs@^16.0.0, yargs@^16.0.3, yargs@^16.2.0:
9385 9383 version "16.2.0"
9386 9384 resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
9387 9385 integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
... ...