Commit 36a7e70cee2aa23d4fcfa8bda00bfadac9b7c50d

Authored by vben
1 parent 4f6b65b8

chore: update deps

CHANGELOG.zh_CN.md
@@ -16,7 +16,7 @@ @@ -16,7 +16,7 @@
16 ### 🎫 Chores 16 ### 🎫 Chores
17 17
18 - 删除菜单背景图 18 - 删除菜单背景图
19 -- 更新`ant-design-vue`版本为`beta13` 19 +- 更新`ant-design-vue`版本为`beta15`
20 - 更新`vite`版本为`rc.9` 20 - 更新`vite`版本为`rc.9`
21 - 异常页调整 21 - 异常页调整
22 - `BasicTitle` 色块默认不显示 22 - `BasicTitle` 色块默认不显示
package.json
@@ -21,8 +21,8 @@ @@ -21,8 +21,8 @@
21 "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap" 21 "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap"
22 }, 22 },
23 "dependencies": { 23 "dependencies": {
24 - "@iconify/iconify": "^2.0.0-rc.1",  
25 - "ant-design-vue": "^2.0.0-beta.13", 24 + "@iconify/iconify": "^2.0.0-rc.2",
  25 + "ant-design-vue": "^2.0.0-beta.15",
26 "apexcharts": "3.22.0", 26 "apexcharts": "3.22.0",
27 "axios": "^0.21.0", 27 "axios": "^0.21.0",
28 "echarts": "^4.9.0", 28 "echarts": "^4.9.0",
@@ -35,7 +35,7 @@ @@ -35,7 +35,7 @@
35 "vditor": "^3.6.0", 35 "vditor": "^3.6.0",
36 "vue": "^3.0.2", 36 "vue": "^3.0.2",
37 "vue-i18n": "^9.0.0-beta.6", 37 "vue-i18n": "^9.0.0-beta.6",
38 - "vue-router": "^4.0.0-rc.1", 38 + "vue-router": "^4.0.0-rc.2",
39 "vuex": "^4.0.0-rc.1", 39 "vuex": "^4.0.0-rc.1",
40 "vuex-module-decorators": "^1.0.1", 40 "vuex-module-decorators": "^1.0.1",
41 "xlsx": "^0.16.8", 41 "xlsx": "^0.16.8",
@@ -44,7 +44,7 @@ @@ -44,7 +44,7 @@
44 "devDependencies": { 44 "devDependencies": {
45 "@commitlint/cli": "^11.0.0", 45 "@commitlint/cli": "^11.0.0",
46 "@commitlint/config-conventional": "^11.0.0", 46 "@commitlint/config-conventional": "^11.0.0",
47 - "@iconify/json": "^1.1.251", 47 + "@iconify/json": "^1.1.254",
48 "@ls-lint/ls-lint": "^1.9.2", 48 "@ls-lint/ls-lint": "^1.9.2",
49 "@purge-icons/generated": "^0.4.1", 49 "@purge-icons/generated": "^0.4.1",
50 "@types/echarts": "^4.9.0", 50 "@types/echarts": "^4.9.0",
@@ -64,11 +64,11 @@ @@ -64,11 +64,11 @@
64 "@vuedx/typescript-plugin-vue": "^0.2.4-0", 64 "@vuedx/typescript-plugin-vue": "^0.2.4-0",
65 "autoprefixer": "^9.8.6", 65 "autoprefixer": "^9.8.6",
66 "commitizen": "^4.2.2", 66 "commitizen": "^4.2.2",
67 - "conventional-changelog-cli": "^2.1.0", 67 + "conventional-changelog-cli": "^2.1.1",
68 "conventional-changelog-custom-config": "^0.3.1", 68 "conventional-changelog-custom-config": "^0.3.1",
69 "cross-env": "^7.0.2", 69 "cross-env": "^7.0.2",
70 "dotenv": "^8.2.0", 70 "dotenv": "^8.2.0",
71 - "eslint": "^7.12.0", 71 + "eslint": "^7.13.0",
72 "eslint-config-prettier": "^6.15.0", 72 "eslint-config-prettier": "^6.15.0",
73 "eslint-plugin-prettier": "^3.1.4", 73 "eslint-plugin-prettier": "^3.1.4",
74 "eslint-plugin-vue": "^7.1.0", 74 "eslint-plugin-vue": "^7.1.0",
@@ -93,7 +93,7 @@ @@ -93,7 +93,7 @@
93 "vite": "^1.0.0-rc.9", 93 "vite": "^1.0.0-rc.9",
94 "vite-plugin-html": "^1.0.0-beta.2", 94 "vite-plugin-html": "^1.0.0-beta.2",
95 "vite-plugin-mock": "^1.0.6", 95 "vite-plugin-mock": "^1.0.6",
96 - "vite-plugin-purge-icons": "^0.4.4", 96 + "vite-plugin-purge-icons": "^0.4.5",
97 "vite-plugin-pwa": "^0.1.5", 97 "vite-plugin-pwa": "^0.1.5",
98 "vue-eslint-parser": "^7.1.1", 98 "vue-eslint-parser": "^7.1.1",
99 "yargs": "^16.1.0" 99 "yargs": "^16.1.0"
src/components/Table/src/props.ts
@@ -18,7 +18,7 @@ export const basicProps = { @@ -18,7 +18,7 @@ export const basicProps = {
18 }, 18 },
19 19
20 sortFn: { 20 sortFn: {
21 - type: Function as PropType<(sortInfo: SorterResult<any>) => any>, 21 + type: Function as PropType<(sortInfo: SorterResult) => any>,
22 default: DEFAULT_SORT_FN, 22 default: DEFAULT_SORT_FN,
23 }, 23 },
24 24
yarn.lock
@@ -1040,15 +1040,20 @@ @@ -1040,15 +1040,20 @@
1040 dependencies: 1040 dependencies:
1041 "@hapi/hoek" "^8.3.0" 1041 "@hapi/hoek" "^8.3.0"
1042 1042
1043 -"@iconify/iconify@2.0.0-rc.1", "@iconify/iconify@>=2.0.0-rc.1", "@iconify/iconify@^2.0.0-rc.1": 1043 +"@iconify/iconify@2.0.0-rc.1", "@iconify/iconify@>=2.0.0-rc.1":
1044 version "2.0.0-rc.1" 1044 version "2.0.0-rc.1"
1045 resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.1.tgz#a8bae29d71016d5af98c69f56a73c4a040217b3a" 1045 resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.1.tgz#a8bae29d71016d5af98c69f56a73c4a040217b3a"
1046 integrity sha512-ji5H04VjYtR4seIEgVVLPxg1KRhrFquOiyfPyLVS6vYPkuqV6bcWdssi05YSmf/OAzG4E7Qsg80/bOKyd5tYTw== 1046 integrity sha512-ji5H04VjYtR4seIEgVVLPxg1KRhrFquOiyfPyLVS6vYPkuqV6bcWdssi05YSmf/OAzG4E7Qsg80/bOKyd5tYTw==
1047 1047
1048 -"@iconify/json@^1.1.251":  
1049 - version "1.1.251"  
1050 - resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.251.tgz#02574964f7566790c44704273b4a5e45dd82775c"  
1051 - integrity sha512-jprDcV8+8h71bPUOpxc8e0R8sw03PXn1lewQlZjoShZA6qdPM1fD+t3ilEAOU+m8JtPoyd3IJ0Z8mZqGxdI/Wg== 1048 +"@iconify/iconify@^2.0.0-rc.2":
  1049 + version "2.0.0-rc.2"
  1050 + resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.2.tgz#c4a95ddc06ca9b9496df03604e66fdefb39f4c4b"
  1051 + integrity sha512-BybEHU5/I9EQ0CcwKAqmreZ2bMnAXrqLCTptAc6vPetHMbrXdZfejP5mt57e/8PNSt/qE7BHniU5PCYA+PGIHw==
  1052 +
  1053 +"@iconify/json@^1.1.254":
  1054 + version "1.1.254"
  1055 + resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.254.tgz#10fce37cf0d5cd0e2fa333abd0f2f80034de5b2e"
  1056 + integrity sha512-ku9ThvOI/1DzQbiJtvaVrcz6t1jyI+IB9z1yWXSUL81O6Gs/SIVhkNil0b+eKWHj7i3/HQIacd3d4V9rYMmf5g==
1052 1057
1053 "@koa/cors@^3.1.0": 1058 "@koa/cors@^3.1.0":
1054 version "3.1.0" 1059 version "3.1.0"
@@ -1108,14 +1113,14 @@ @@ -1108,14 +1113,14 @@
1108 resolved "https://registry.npmjs.org/@pawelgalazka/shell/-/shell-2.0.0.tgz#7174a2d904375e435f6a012322713234c00e75cd" 1113 resolved "https://registry.npmjs.org/@pawelgalazka/shell/-/shell-2.0.0.tgz#7174a2d904375e435f6a012322713234c00e75cd"
1109 integrity sha512-MsNuS9M2vVbJNW3+YSiz9eF0/U2ZPlEEVC4ky8QJnxFlU4H7DZOH5A1hDQUfF5DV/pYwBD76dkF3+mrzZTJ3Tw== 1114 integrity sha512-MsNuS9M2vVbJNW3+YSiz9eF0/U2ZPlEEVC4ky8QJnxFlU4H7DZOH5A1hDQUfF5DV/pYwBD76dkF3+mrzZTJ3Tw==
1110 1115
1111 -"@purge-icons/core@^0.4.4":  
1112 - version "0.4.4"  
1113 - resolved "https://registry.npmjs.org/@purge-icons/core/-/core-0.4.4.tgz#aa7d979bdecc7408f26704354f75b4b3ed2877cb"  
1114 - integrity sha512-OiNVZc5Ij4FHJ/USye0Ou8SD7HqHTYIDnMj2fT9qMXFwzrOmvKU7jC0gKAowscwoljll2qg60y628aAQ3xPfCA== 1116 +"@purge-icons/core@^0.4.5":
  1117 + version "0.4.5"
  1118 + resolved "https://registry.npmjs.org/@purge-icons/core/-/core-0.4.5.tgz#2525c46d8721910eb420954dd5eb4d3c9753838a"
  1119 + integrity sha512-8YMtl343dFA+dyslxwrvN7zx5uGf8ezFbBjtLOocR638ozUNJY1+cnYRcbbiM2hFkwrptPyyzzEFhdgYeGZhSQ==
1115 dependencies: 1120 dependencies:
1116 "@iconify/iconify" "2.0.0-rc.1" 1121 "@iconify/iconify" "2.0.0-rc.1"
1117 - axios "^0.20.0"  
1118 - debug "^4.2.0" 1122 + axios "^0.21.0"
  1123 + debug "^4.3.0"
1119 fast-glob "^3.2.4" 1124 fast-glob "^3.2.4"
1120 fs-extra "^9.0.1" 1125 fs-extra "^9.0.1"
1121 1126
@@ -1830,10 +1835,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: @@ -1830,10 +1835,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1830 dependencies: 1835 dependencies:
1831 color-convert "^2.0.1" 1836 color-convert "^2.0.1"
1832 1837
1833 -ant-design-vue@^2.0.0-beta.13:  
1834 - version "2.0.0-beta.13"  
1835 - resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.0.0-beta.13.tgz#04f925bc5283d0cab1b7c608e055ca6949e49a70"  
1836 - integrity sha512-VOSPqRfe66iR8LNaOM7rbGjttUBPXyv7s6U13rVfVX2f7iw7omokZk+wQMtU0w8so1cNY2gMPvYWkXx3/ghmlA== 1838 +ant-design-vue@^2.0.0-beta.15:
  1839 + version "2.0.0-beta.15"
  1840 + resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.0.0-beta.15.tgz#3c787dabb70a33885d0e751e58f9a5610ed06134"
  1841 + integrity sha512-OxZy+ZYU3LauIL4Rhqwy441K/iD++Cit6upnQy5+LVUrX0PSObPqPqMWVpncbAmJJYTEz88gkvgGeYqBdzouWA==
1837 dependencies: 1842 dependencies:
1838 "@ant-design-vue/use" "^0.0.1-0" 1843 "@ant-design-vue/use" "^0.0.1-0"
1839 "@ant-design/icons-vue" "^5.1.5" 1844 "@ant-design/icons-vue" "^5.1.5"
@@ -1996,13 +2001,6 @@ autoprefixer@^9.8.6: @@ -1996,13 +2001,6 @@ autoprefixer@^9.8.6:
1996 postcss "^7.0.32" 2001 postcss "^7.0.32"
1997 postcss-value-parser "^4.1.0" 2002 postcss-value-parser "^4.1.0"
1998 2003
1999 -axios@^0.20.0:  
2000 - version "0.20.0"  
2001 - resolved "https://registry.npmjs.org/axios/-/axios-0.20.0.tgz#057ba30f04884694993a8cd07fa394cff11c50bd"  
2002 - integrity sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==  
2003 - dependencies:  
2004 - follow-redirects "^1.10.0"  
2005 -  
2006 axios@^0.21.0: 2004 axios@^0.21.0:
2007 version "0.21.0" 2005 version "0.21.0"
2008 resolved "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz#26df088803a2350dff2c27f96fef99fe49442aca" 2006 resolved "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz#26df088803a2350dff2c27f96fef99fe49442aca"
@@ -2664,7 +2662,7 @@ content-type@^1.0.4: @@ -2664,7 +2662,7 @@ content-type@^1.0.4:
2664 resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 2662 resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
2665 integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 2663 integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
2666 2664
2667 -conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.11: 2665 +conventional-changelog-angular@^5.0.0:
2668 version "5.0.11" 2666 version "5.0.11"
2669 resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz#99a3ca16e4a5305e0c2c2fae3ef74fd7631fc3fb" 2667 resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz#99a3ca16e4a5305e0c2c2fae3ef74fd7631fc3fb"
2670 integrity sha512-nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw== 2668 integrity sha512-nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw==
@@ -2672,32 +2670,40 @@ conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.11: @@ -2672,32 +2670,40 @@ conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.11:
2672 compare-func "^2.0.0" 2670 compare-func "^2.0.0"
2673 q "^1.5.1" 2671 q "^1.5.1"
2674 2672
2675 -conventional-changelog-atom@^2.0.7:  
2676 - version "2.0.7"  
2677 - resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.7.tgz#221575253a04f77a2fd273eb2bf29a138f710abf"  
2678 - integrity sha512-7dOREZwzB+tCEMjRTDfen0OHwd7vPUdmU0llTy1eloZgtOP4iSLVzYIQqfmdRZEty+3w5Jz+AbhfTJKoKw1JeQ== 2673 +conventional-changelog-angular@^5.0.12:
  2674 + version "5.0.12"
  2675 + resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9"
  2676 + integrity sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw==
2679 dependencies: 2677 dependencies:
  2678 + compare-func "^2.0.0"
2680 q "^1.5.1" 2679 q "^1.5.1"
2681 2680
2682 -conventional-changelog-cli@^2.1.0:  
2683 - version "2.1.0"  
2684 - resolved "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.1.0.tgz#5da5be32203ca8382815afc85b7f9151115d5e97"  
2685 - integrity sha512-hZ8EcpxV4LcGOZwH+U5LJQDnyA4o/uyUdmIGzmFZMB4caujavvDBo/iTgVihk0m1QKkEhJgulagrILSm1JCakA== 2681 +conventional-changelog-atom@^2.0.8:
  2682 + version "2.0.8"
  2683 + resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de"
  2684 + integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==
  2685 + dependencies:
  2686 + q "^1.5.1"
  2687 +
  2688 +conventional-changelog-cli@^2.1.1:
  2689 + version "2.1.1"
  2690 + resolved "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.1.1.tgz#7a11980bc399938e0509d2adf8e7a0e213eb994e"
  2691 + integrity sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==
2686 dependencies: 2692 dependencies:
2687 add-stream "^1.0.0" 2693 add-stream "^1.0.0"
2688 - conventional-changelog "^3.1.23" 2694 + conventional-changelog "^3.1.24"
2689 lodash "^4.17.15" 2695 lodash "^4.17.15"
2690 - meow "^7.0.0" 2696 + meow "^8.0.0"
2691 tempfile "^3.0.0" 2697 tempfile "^3.0.0"
2692 2698
2693 -conventional-changelog-codemirror@^2.0.7:  
2694 - version "2.0.7"  
2695 - resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.7.tgz#d6b6a8ce2707710c5a036e305037547fb9e15bfb"  
2696 - integrity sha512-Oralk1kiagn3Gb5cR5BffenWjVu59t/viE6UMD/mQa1hISMPkMYhJIqX+CMeA1zXgVBO+YHQhhokEj99GP5xcg== 2699 +conventional-changelog-codemirror@^2.0.8:
  2700 + version "2.0.8"
  2701 + resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc"
  2702 + integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==
2697 dependencies: 2703 dependencies:
2698 q "^1.5.1" 2704 q "^1.5.1"
2699 2705
2700 -conventional-changelog-conventionalcommits@^4.3.1, conventional-changelog-conventionalcommits@^4.4.0: 2706 +conventional-changelog-conventionalcommits@^4.3.1:
2701 version "4.4.0" 2707 version "4.4.0"
2702 resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.4.0.tgz#8d96687141c9bbd725a89b95c04966d364194cd4" 2708 resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.4.0.tgz#8d96687141c9bbd725a89b95c04966d364194cd4"
2703 integrity sha512-ybvx76jTh08tpaYrYn/yd0uJNLt5yMrb1BphDe4WBredMlvPisvMghfpnJb6RmRNcqXeuhR6LfGZGewbkRm9yA== 2709 integrity sha512-ybvx76jTh08tpaYrYn/yd0uJNLt5yMrb1BphDe4WBredMlvPisvMghfpnJb6RmRNcqXeuhR6LfGZGewbkRm9yA==
@@ -2706,64 +2712,73 @@ conventional-changelog-conventionalcommits@^4.3.1, conventional-changelog-conven @@ -2706,64 +2712,73 @@ conventional-changelog-conventionalcommits@^4.3.1, conventional-changelog-conven
2706 lodash "^4.17.15" 2712 lodash "^4.17.15"
2707 q "^1.5.1" 2713 q "^1.5.1"
2708 2714
2709 -conventional-changelog-core@^4.2.0:  
2710 - version "4.2.0"  
2711 - resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.0.tgz#d8befd1e1f5126bf35a17668276cc8c244650469"  
2712 - integrity sha512-8+xMvN6JvdDtPbGBqA7oRNyZD4od1h/SIzrWqHcKZjitbVXrFpozEeyn4iI4af1UwdrabQpiZMaV07fPUTGd4w== 2715 +conventional-changelog-conventionalcommits@^4.5.0:
  2716 + version "4.5.0"
  2717 + resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.5.0.tgz#a02e0b06d11d342fdc0f00c91d78265ed0bc0a62"
  2718 + integrity sha512-buge9xDvjjOxJlyxUnar/+6i/aVEVGA7EEh4OafBCXPlLUQPGbRUBhBUveWRxzvR8TEjhKEP4BdepnpG2FSZXw==
  2719 + dependencies:
  2720 + compare-func "^2.0.0"
  2721 + lodash "^4.17.15"
  2722 + q "^1.5.1"
  2723 +
  2724 +conventional-changelog-core@^4.2.1:
  2725 + version "4.2.1"
  2726 + resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.1.tgz#f811ad98ab2ff080becafc61407509420c9b447d"
  2727 + integrity sha512-8cH8/DEoD3e5Q6aeogdR5oaaKs0+mG6+f+Om0ZYt3PNv7Zo0sQhu4bMDRsqAF+UTekTAtP1W/C41jH/fkm8Jtw==
2713 dependencies: 2728 dependencies:
2714 add-stream "^1.0.0" 2729 add-stream "^1.0.0"
2715 - conventional-changelog-writer "^4.0.17"  
2716 - conventional-commits-parser "^3.1.0" 2730 + conventional-changelog-writer "^4.0.18"
  2731 + conventional-commits-parser "^3.2.0"
2717 dateformat "^3.0.0" 2732 dateformat "^3.0.0"
2718 get-pkg-repo "^1.0.0" 2733 get-pkg-repo "^1.0.0"
2719 git-raw-commits "2.0.0" 2734 git-raw-commits "2.0.0"
2720 git-remote-origin-url "^2.0.0" 2735 git-remote-origin-url "^2.0.0"
2721 - git-semver-tags "^4.1.0" 2736 + git-semver-tags "^4.1.1"
2722 lodash "^4.17.15" 2737 lodash "^4.17.15"
2723 - normalize-package-data "^2.3.5" 2738 + normalize-package-data "^3.0.0"
2724 q "^1.5.1" 2739 q "^1.5.1"
2725 read-pkg "^3.0.0" 2740 read-pkg "^3.0.0"
2726 read-pkg-up "^3.0.0" 2741 read-pkg-up "^3.0.0"
2727 shelljs "^0.8.3" 2742 shelljs "^0.8.3"
2728 - through2 "^3.0.0" 2743 + through2 "^4.0.0"
2729 2744
2730 conventional-changelog-custom-config@^0.3.1: 2745 conventional-changelog-custom-config@^0.3.1:
2731 version "0.3.1" 2746 version "0.3.1"
2732 resolved "https://registry.npmjs.org/conventional-changelog-custom-config/-/conventional-changelog-custom-config-0.3.1.tgz#4a6433138d602a2b7ecc81729feb6fa1855bff7b" 2747 resolved "https://registry.npmjs.org/conventional-changelog-custom-config/-/conventional-changelog-custom-config-0.3.1.tgz#4a6433138d602a2b7ecc81729feb6fa1855bff7b"
2733 integrity sha512-d4Lre8VZll1SVRmpoUe/LSj8Ge8QOt7u8MQyGz8vu/H/KiWf5rvdYkBo5z268QvkUrF43eI64QxVcqd9XOLsew== 2748 integrity sha512-d4Lre8VZll1SVRmpoUe/LSj8Ge8QOt7u8MQyGz8vu/H/KiWf5rvdYkBo5z268QvkUrF43eI64QxVcqd9XOLsew==
2734 2749
2735 -conventional-changelog-ember@^2.0.8:  
2736 - version "2.0.8"  
2737 - resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.8.tgz#f0f04eb7ff3c885af97db100865ab95dcfa9917f"  
2738 - integrity sha512-JEMEcUAMg4Q9yxD341OgWlESQ4gLqMWMXIWWUqoQU8yvTJlKnrvcui3wk9JvnZQyONwM2g1MKRZuAjKxr8hAXA== 2750 +conventional-changelog-ember@^2.0.9:
  2751 + version "2.0.9"
  2752 + resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962"
  2753 + integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==
2739 dependencies: 2754 dependencies:
2740 q "^1.5.1" 2755 q "^1.5.1"
2741 2756
2742 -conventional-changelog-eslint@^3.0.8:  
2743 - version "3.0.8"  
2744 - resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.8.tgz#f8b952b7ed7253ea0ac0b30720bb381f4921b46c"  
2745 - integrity sha512-5rTRltgWG7TpU1PqgKHMA/2ivjhrB+E+S7OCTvj0zM/QGg4vmnVH67Vq/EzvSNYtejhWC+OwzvDrLk3tqPry8A== 2757 +conventional-changelog-eslint@^3.0.9:
  2758 + version "3.0.9"
  2759 + resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb"
  2760 + integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==
2746 dependencies: 2761 dependencies:
2747 q "^1.5.1" 2762 q "^1.5.1"
2748 2763
2749 -conventional-changelog-express@^2.0.5:  
2750 - version "2.0.5"  
2751 - resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.5.tgz#6e93705acdad374516ca125990012a48e710f8de"  
2752 - integrity sha512-pW2hsjKG+xNx/Qjof8wYlAX/P61hT5gQ/2rZ2NsTpG+PgV7Rc8RCfITvC/zN9K8fj0QmV6dWmUefCteD9baEAw== 2764 +conventional-changelog-express@^2.0.6:
  2765 + version "2.0.6"
  2766 + resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8"
  2767 + integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==
2753 dependencies: 2768 dependencies:
2754 q "^1.5.1" 2769 q "^1.5.1"
2755 2770
2756 -conventional-changelog-jquery@^3.0.10:  
2757 - version "3.0.10"  
2758 - resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.10.tgz#fe8eb6aff322aa980af5eb68497622a5f6257ce7"  
2759 - integrity sha512-QCW6wF8QgPkq2ruPaxc83jZxoWQxLkt/pNxIDn/oYjMiVgrtqNdd7lWe3vsl0hw5ENHNf/ejXuzDHk6suKsRpg== 2771 +conventional-changelog-jquery@^3.0.11:
  2772 + version "3.0.11"
  2773 + resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf"
  2774 + integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==
2760 dependencies: 2775 dependencies:
2761 q "^1.5.1" 2776 q "^1.5.1"
2762 2777
2763 -conventional-changelog-jshint@^2.0.8:  
2764 - version "2.0.8"  
2765 - resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.8.tgz#3fff4df8cb46037f77b9dc3f8e354c7f99332f13"  
2766 - integrity sha512-hB/iI0IiZwnZ+seYI+qEQ4b+EMQSEC8jGIvhO2Vpz1E5p8FgLz75OX8oB1xJWl+s4xBMB6f8zJr0tC/BL7YOjw== 2778 +conventional-changelog-jshint@^2.0.9:
  2779 + version "2.0.9"
  2780 + resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff"
  2781 + integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==
2767 dependencies: 2782 dependencies:
2768 compare-func "^2.0.0" 2783 compare-func "^2.0.0"
2769 q "^1.5.1" 2784 q "^1.5.1"
@@ -2773,37 +2788,37 @@ conventional-changelog-preset-loader@^2.3.4: @@ -2773,37 +2788,37 @@ conventional-changelog-preset-loader@^2.3.4:
2773 resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" 2788 resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c"
2774 integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== 2789 integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==
2775 2790
2776 -conventional-changelog-writer@^4.0.17:  
2777 - version "4.0.17"  
2778 - resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz#4753aaa138bf5aa59c0b274cb5937efcd2722e21"  
2779 - integrity sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw== 2791 +conventional-changelog-writer@^4.0.18:
  2792 + version "4.0.18"
  2793 + resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.18.tgz#10b73baa59c7befc69b360562f8b9cd19e63daf8"
  2794 + integrity sha512-mAQDCKyB9HsE8Ko5cCM1Jn1AWxXPYV0v8dFPabZRkvsiWUul2YyAqbIaoMKF88Zf2ffnOPSvKhboLf3fnjo5/A==
2780 dependencies: 2795 dependencies:
2781 compare-func "^2.0.0" 2796 compare-func "^2.0.0"
2782 - conventional-commits-filter "^2.0.6" 2797 + conventional-commits-filter "^2.0.7"
2783 dateformat "^3.0.0" 2798 dateformat "^3.0.0"
2784 handlebars "^4.7.6" 2799 handlebars "^4.7.6"
2785 json-stringify-safe "^5.0.1" 2800 json-stringify-safe "^5.0.1"
2786 lodash "^4.17.15" 2801 lodash "^4.17.15"
2787 - meow "^7.0.0" 2802 + meow "^8.0.0"
2788 semver "^6.0.0" 2803 semver "^6.0.0"
2789 split "^1.0.0" 2804 split "^1.0.0"
2790 - through2 "^3.0.0"  
2791 -  
2792 -conventional-changelog@^3.1.23:  
2793 - version "3.1.23"  
2794 - resolved "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.23.tgz#d696408021b579a3814aba79b38729ed86478aea"  
2795 - integrity sha512-sScUu2NHusjRC1dPc5p8/b3kT78OYr95/Bx7Vl8CPB8tF2mG1xei5iylDTRjONV5hTlzt+Cn/tBWrKdd299b7A==  
2796 - dependencies:  
2797 - conventional-changelog-angular "^5.0.11"  
2798 - conventional-changelog-atom "^2.0.7"  
2799 - conventional-changelog-codemirror "^2.0.7"  
2800 - conventional-changelog-conventionalcommits "^4.4.0"  
2801 - conventional-changelog-core "^4.2.0"  
2802 - conventional-changelog-ember "^2.0.8"  
2803 - conventional-changelog-eslint "^3.0.8"  
2804 - conventional-changelog-express "^2.0.5"  
2805 - conventional-changelog-jquery "^3.0.10"  
2806 - conventional-changelog-jshint "^2.0.8" 2805 + through2 "^4.0.0"
  2806 +
  2807 +conventional-changelog@^3.1.24:
  2808 + version "3.1.24"
  2809 + resolved "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.24.tgz#ebd180b0fd1b2e1f0095c4b04fd088698348a464"
  2810 + integrity sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==
  2811 + dependencies:
  2812 + conventional-changelog-angular "^5.0.12"
  2813 + conventional-changelog-atom "^2.0.8"
  2814 + conventional-changelog-codemirror "^2.0.8"
  2815 + conventional-changelog-conventionalcommits "^4.5.0"
  2816 + conventional-changelog-core "^4.2.1"
  2817 + conventional-changelog-ember "^2.0.9"
  2818 + conventional-changelog-eslint "^3.0.9"
  2819 + conventional-changelog-express "^2.0.6"
  2820 + conventional-changelog-jquery "^3.0.11"
  2821 + conventional-changelog-jshint "^2.0.9"
2807 conventional-changelog-preset-loader "^2.3.4" 2822 conventional-changelog-preset-loader "^2.3.4"
2808 2823
2809 conventional-commit-types@^3.0.0: 2824 conventional-commit-types@^3.0.0:
@@ -2811,15 +2826,15 @@ conventional-commit-types@^3.0.0: @@ -2811,15 +2826,15 @@ conventional-commit-types@^3.0.0:
2811 resolved "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b" 2826 resolved "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b"
2812 integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg== 2827 integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==
2813 2828
2814 -conventional-commits-filter@^2.0.6:  
2815 - version "2.0.6"  
2816 - resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz#0935e1240c5ca7698329affee1b6a46d33324c4c"  
2817 - integrity sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw== 2829 +conventional-commits-filter@^2.0.7:
  2830 + version "2.0.7"
  2831 + resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3"
  2832 + integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==
2818 dependencies: 2833 dependencies:
2819 lodash.ismatch "^4.4.0" 2834 lodash.ismatch "^4.4.0"
2820 modify-values "^1.0.0" 2835 modify-values "^1.0.0"
2821 2836
2822 -conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.1.0: 2837 +conventional-commits-parser@^3.0.0:
2823 version "3.1.0" 2838 version "3.1.0"
2824 resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz#10140673d5e7ef5572633791456c5d03b69e8be4" 2839 resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz#10140673d5e7ef5572633791456c5d03b69e8be4"
2825 integrity sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA== 2840 integrity sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA==
@@ -2832,6 +2847,19 @@ conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.1.0: @@ -2832,6 +2847,19 @@ conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.1.0:
2832 through2 "^3.0.0" 2847 through2 "^3.0.0"
2833 trim-off-newlines "^1.0.0" 2848 trim-off-newlines "^1.0.0"
2834 2849
  2850 +conventional-commits-parser@^3.2.0:
  2851 + version "3.2.0"
  2852 + resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz#9e261b139ca4b7b29bcebbc54460da36894004ca"
  2853 + integrity sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ==
  2854 + dependencies:
  2855 + JSONStream "^1.0.4"
  2856 + is-text-path "^1.0.1"
  2857 + lodash "^4.17.15"
  2858 + meow "^8.0.0"
  2859 + split2 "^2.0.0"
  2860 + through2 "^4.0.0"
  2861 + trim-off-newlines "^1.0.0"
  2862 +
2835 convert-source-map@^1.7.0: 2863 convert-source-map@^1.7.0:
2836 version "1.7.0" 2864 version "1.7.0"
2837 resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 2865 resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
@@ -3395,10 +3423,10 @@ eslint-visitor-keys@^2.0.0: @@ -3395,10 +3423,10 @@ eslint-visitor-keys@^2.0.0:
3395 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 3423 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
3396 integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 3424 integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
3397 3425
3398 -eslint@^7.12.0:  
3399 - version "7.12.1"  
3400 - resolved "https://registry.npmjs.org/eslint/-/eslint-7.12.1.tgz#bd9a81fa67a6cfd51656cdb88812ce49ccec5801"  
3401 - integrity sha512-HlMTEdr/LicJfN08LB3nM1rRYliDXOmfoO4vj39xN6BLpFzF00hbwBoqHk8UcJ2M/3nlARZWy/mslvGEuZFvsg== 3426 +eslint@^7.13.0:
  3427 + version "7.13.0"
  3428 + resolved "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz#7f180126c0dcdef327bfb54b211d7802decc08da"
  3429 + integrity sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ==
3402 dependencies: 3430 dependencies:
3403 "@babel/code-frame" "^7.0.0" 3431 "@babel/code-frame" "^7.0.0"
3404 "@eslint/eslintrc" "^0.2.1" 3432 "@eslint/eslintrc" "^0.2.1"
@@ -3948,12 +3976,12 @@ git-remote-origin-url@^2.0.0: @@ -3948,12 +3976,12 @@ git-remote-origin-url@^2.0.0:
3948 gitconfiglocal "^1.0.0" 3976 gitconfiglocal "^1.0.0"
3949 pify "^2.3.0" 3977 pify "^2.3.0"
3950 3978
3951 -git-semver-tags@^4.1.0:  
3952 - version "4.1.0"  
3953 - resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.0.tgz#0146c9bc24ee96104c99f443071c8c2d7dc848e3"  
3954 - integrity sha512-TcxAGeo03HdErzKzi4fDD+xEL7gi8r2Y5YSxH6N2XYdVSV5UkBwfrt7Gqo1b+uSHCjy/sa9Y6BBBxxFLxfbhTg== 3979 +git-semver-tags@^4.1.1:
  3980 + version "4.1.1"
  3981 + resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780"
  3982 + integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==
3955 dependencies: 3983 dependencies:
3956 - meow "^7.0.0" 3984 + meow "^8.0.0"
3957 semver "^6.0.0" 3985 semver "^6.0.0"
3958 3986
3959 gitconfiglocal@^1.0.0: 3987 gitconfiglocal@^1.0.0:
@@ -4180,6 +4208,13 @@ hosted-git-info@^2.1.4: @@ -4180,6 +4208,13 @@ hosted-git-info@^2.1.4:
4180 resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 4208 resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
4181 integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 4209 integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
4182 4210
  4211 +hosted-git-info@^3.0.6:
  4212 + version "3.0.7"
  4213 + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz#a30727385ea85acfcee94e0aad9e368c792e036c"
  4214 + integrity sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==
  4215 + dependencies:
  4216 + lru-cache "^6.0.0"
  4217 +
4183 html-minifier-terser@^5.1.1: 4218 html-minifier-terser@^5.1.1:
4184 version "5.1.1" 4219 version "5.1.1"
4185 resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" 4220 resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
@@ -5376,6 +5411,23 @@ meow@^7.0.0, meow@^7.1.1: @@ -5376,6 +5411,23 @@ meow@^7.0.0, meow@^7.1.1:
5376 type-fest "^0.13.1" 5411 type-fest "^0.13.1"
5377 yargs-parser "^18.1.3" 5412 yargs-parser "^18.1.3"
5378 5413
  5414 +meow@^8.0.0:
  5415 + version "8.0.0"
  5416 + resolved "https://registry.npmjs.org/meow/-/meow-8.0.0.tgz#1aa10ee61046719e334ffdc038bb5069250ec99a"
  5417 + integrity sha512-nbsTRz2fwniJBFgUkcdISq8y/q9n9VbiHYbfwklFh5V4V2uAcxtKQkDc0yCLPM/kP0d+inZBewn3zJqewHE7kg==
  5418 + dependencies:
  5419 + "@types/minimist" "^1.2.0"
  5420 + camelcase-keys "^6.2.2"
  5421 + decamelize-keys "^1.1.0"
  5422 + hard-rejection "^2.1.0"
  5423 + minimist-options "4.1.0"
  5424 + normalize-package-data "^3.0.0"
  5425 + read-pkg-up "^7.0.1"
  5426 + redent "^3.0.0"
  5427 + trim-newlines "^3.0.0"
  5428 + type-fest "^0.18.0"
  5429 + yargs-parser "^20.2.3"
  5430 +
5379 merge-source-map@^1.1.0: 5431 merge-source-map@^1.1.0:
5380 version "1.1.0" 5432 version "1.1.0"
5381 resolved "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 5433 resolved "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646"
@@ -5624,7 +5676,7 @@ node-releases@^1.1.65: @@ -5624,7 +5676,7 @@ node-releases@^1.1.65:
5624 resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.65.tgz#52d9579176bd60f23eba05c4438583f341944b81" 5676 resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.65.tgz#52d9579176bd60f23eba05c4438583f341944b81"
5625 integrity sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA== 5677 integrity sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA==
5626 5678
5627 -normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.5.0: 5679 +normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0:
5628 version "2.5.0" 5680 version "2.5.0"
5629 resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 5681 resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
5630 integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 5682 integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
@@ -5634,6 +5686,16 @@ normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package- @@ -5634,6 +5686,16 @@ normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-
5634 semver "2 || 3 || 4 || 5" 5686 semver "2 || 3 || 4 || 5"
5635 validate-npm-package-license "^3.0.1" 5687 validate-npm-package-license "^3.0.1"
5636 5688
  5689 +normalize-package-data@^3.0.0:
  5690 + version "3.0.0"
  5691 + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.0.tgz#1f8a7c423b3d2e85eb36985eaf81de381d01301a"
  5692 + integrity sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw==
  5693 + dependencies:
  5694 + hosted-git-info "^3.0.6"
  5695 + resolve "^1.17.0"
  5696 + semver "^7.3.2"
  5697 + validate-npm-package-license "^3.0.1"
  5698 +
5637 normalize-path@^3.0.0, normalize-path@~3.0.0: 5699 normalize-path@^3.0.0, normalize-path@~3.0.0:
5638 version "3.0.0" 5700 version "3.0.0"
5639 resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 5701 resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
@@ -6447,7 +6509,7 @@ read-pkg@^5.2.0: @@ -6447,7 +6509,7 @@ read-pkg@^5.2.0:
6447 parse-json "^5.0.0" 6509 parse-json "^5.0.0"
6448 type-fest "^0.6.0" 6510 type-fest "^0.6.0"
6449 6511
6450 -"readable-stream@2 || 3", readable-stream@^3.1.1: 6512 +"readable-stream@2 || 3", readable-stream@3, readable-stream@^3.1.1:
6451 version "3.6.0" 6513 version "3.6.0"
6452 resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 6514 resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
6453 integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 6515 integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
@@ -6784,12 +6846,12 @@ rollup-plugin-esbuild@^2.5.2: @@ -6784,12 +6846,12 @@ rollup-plugin-esbuild@^2.5.2:
6784 joycon "^2.2.5" 6846 joycon "^2.2.5"
6785 strip-json-comments "^3.1.1" 6847 strip-json-comments "^3.1.1"
6786 6848
6787 -rollup-plugin-purge-icons@^0.4.4:  
6788 - version "0.4.4"  
6789 - resolved "https://registry.npmjs.org/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.4.4.tgz#3808ee041f340ffce4c0d8142d700b7a19125288"  
6790 - integrity sha512-9FHX1OLyDhHx8xsfCp6nxKo5A5CTTsEohVEjRqh641nagbAfwxIofmYc7bnjgr2x21VN4vFOdjBLql9swKYWsA== 6849 +rollup-plugin-purge-icons@^0.4.5:
  6850 + version "0.4.5"
  6851 + resolved "https://registry.npmjs.org/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.4.5.tgz#f93d94953ecb65a9716cccef13a20aeff4d5d548"
  6852 + integrity sha512-rbc32qXlFSOoiMgC+e38KgLo6+trl+hIafxJc4fDNakCIaixRhk8tsFIIuy4q3P2R3/lLHQYYGu5IJhI8223Bg==
6791 dependencies: 6853 dependencies:
6792 - "@purge-icons/core" "^0.4.4" 6854 + "@purge-icons/core" "^0.4.5"
6793 "@purge-icons/generated" "^0.4.1" 6855 "@purge-icons/generated" "^0.4.1"
6794 6856
6795 rollup-plugin-terser@^5.3.1: 6857 rollup-plugin-terser@^5.3.1:
@@ -7687,6 +7749,13 @@ through2@^3.0.0: @@ -7687,6 +7749,13 @@ through2@^3.0.0:
7687 inherits "^2.0.4" 7749 inherits "^2.0.4"
7688 readable-stream "2 || 3" 7750 readable-stream "2 || 3"
7689 7751
  7752 +through2@^4.0.0:
  7753 + version "4.0.2"
  7754 + resolved "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764"
  7755 + integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==
  7756 + dependencies:
  7757 + readable-stream "3"
  7758 +
7690 through@2, "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8: 7759 through@2, "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8:
7691 version "2.3.8" 7760 version "2.3.8"
7692 resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 7761 resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
@@ -7826,6 +7895,11 @@ type-fest@^0.13.1: @@ -7826,6 +7895,11 @@ type-fest@^0.13.1:
7826 resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" 7895 resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934"
7827 integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== 7896 integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
7828 7897
  7898 +type-fest@^0.18.0:
  7899 + version "0.18.0"
  7900 + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.0.tgz#2edfa6382d48653707344f7fccdb0443d460e8d6"
  7901 + integrity sha512-fbDukFPnJBdn2eZ3RR+5mK2slHLFd6gYHY7jna1KWWy4Yr4XysHuCdXRzy+RiG/HwG4WJat00vdC2UHky5eKiQ==
  7902 +
7829 type-fest@^0.3.1: 7903 type-fest@^0.3.1:
7830 version "0.3.1" 7904 version "0.3.1"
7831 resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" 7905 resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
@@ -8110,14 +8184,14 @@ vite-plugin-mock@^1.0.6: @@ -8110,14 +8184,14 @@ vite-plugin-mock@^1.0.6:
8110 rollup "^2.32.1" 8184 rollup "^2.32.1"
8111 rollup-plugin-esbuild "^2.5.2" 8185 rollup-plugin-esbuild "^2.5.2"
8112 8186
8113 -vite-plugin-purge-icons@^0.4.4:  
8114 - version "0.4.4"  
8115 - resolved "https://registry.npmjs.org/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.4.4.tgz#3c5fe17cd2a3ac4ac49b1615ab05b422df37a4af"  
8116 - integrity sha512-T4btagiqi90FchfcVwKFASgK6Dj3QotEL8eZBNOE6YcxQVPWbkZ8I3UgbNbkiGy43pmsvlLkXOAEgEPiSe/q2w== 8187 +vite-plugin-purge-icons@^0.4.5:
  8188 + version "0.4.5"
  8189 + resolved "https://registry.npmjs.org/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.4.5.tgz#0486c0fa10a6d8e6d8b47e4a12d329fe46b0ae65"
  8190 + integrity sha512-56Jj+mJXsZJpHrQ89D/mYJFFvYalV6rLnAdj7Q7q0w9PVFHBHa2E2zdQBOC0fHB+VM/QLgzVqT7gJd0PTuj3Ag==
8117 dependencies: 8191 dependencies:
8118 - "@purge-icons/core" "^0.4.4" 8192 + "@purge-icons/core" "^0.4.5"
8119 "@purge-icons/generated" "^0.4.1" 8193 "@purge-icons/generated" "^0.4.1"
8120 - rollup-plugin-purge-icons "^0.4.4" 8194 + rollup-plugin-purge-icons "^0.4.5"
8121 8195
8122 vite-plugin-pwa@^0.1.5: 8196 vite-plugin-pwa@^0.1.5:
8123 version "0.1.5" 8197 version "0.1.5"
@@ -8215,10 +8289,10 @@ vue-i18n@^9.0.0-beta.6: @@ -8215,10 +8289,10 @@ vue-i18n@^9.0.0-beta.6:
8215 dependencies: 8289 dependencies:
8216 source-map "^0.6.1" 8290 source-map "^0.6.1"
8217 8291
8218 -vue-router@^4.0.0-rc.1:  
8219 - version "4.0.0-rc.1"  
8220 - resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-rc.1.tgz#42f41315849163a1243886c9aa6d7c14f24fd003"  
8221 - integrity sha512-N3SSOIiRFo1/D6EkHGuahUSuyDvFhKizN5zVXkALX7wv0hYYndV49KwzRF5lKsAIt+OlDl7y+sNmwNewb7a4iw== 8292 +vue-router@^4.0.0-rc.2:
  8293 + version "4.0.0-rc.2"
  8294 + resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.0.0-rc.2.tgz#8545cab76a05ca4f6dffbe6c6a671a4dbf585ab2"
  8295 + integrity sha512-51mBp39rzBFpk1nyU9SkhPcwR67gBzWIH8p3pyeDmtNYgWzGF3q8MneD/xbMwsfTQkw2H1qBk6uwRaVy3M8Nxw==
8222 8296
8223 vue-types@^3.0.0: 8297 vue-types@^3.0.0:
8224 version "3.0.1" 8298 version "3.0.1"
@@ -8560,7 +8634,7 @@ yargs-parser@^18.1.2, yargs-parser@^18.1.3: @@ -8560,7 +8634,7 @@ yargs-parser@^18.1.2, yargs-parser@^18.1.3:
8560 camelcase "^5.0.0" 8634 camelcase "^5.0.0"
8561 decamelize "^1.2.0" 8635 decamelize "^1.2.0"
8562 8636
8563 -yargs-parser@^20.2.2: 8637 +yargs-parser@^20.2.2, yargs-parser@^20.2.3:
8564 version "20.2.3" 8638 version "20.2.3"
8565 resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.3.tgz#92419ba867b858c868acf8bae9bf74af0dd0ce26" 8639 resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.3.tgz#92419ba867b858c868acf8bae9bf74af0dd0ce26"
8566 integrity sha512-emOFRT9WVHw03QSvN5qor9QQT9+sw5vwxfYweivSMHTcAXPefwVae2FjO7JJjj8hCE4CzPOPeFM83VwT29HCww== 8640 integrity sha512-emOFRT9WVHw03QSvN5qor9QQT9+sw5vwxfYweivSMHTcAXPefwVae2FjO7JJjj8hCE4CzPOPeFM83VwT29HCww==