mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-04 06:02:51 +08:00
chore: 更新依赖
This commit is contained in:
parent
104257a6d4
commit
049b44f194
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,6 +16,7 @@ dist-ssr
|
||||
# Editor directories and files
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.fleet
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
|
@ -4,7 +4,7 @@
|
||||
*/
|
||||
|
||||
import AutoImport from 'unplugin-auto-import/vite';
|
||||
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
|
||||
import { ElementPlusResolver, VarletUIResolver } from 'unplugin-vue-components/resolvers';
|
||||
|
||||
export const AutoImportDeps = () => {
|
||||
return AutoImport({
|
||||
@ -17,6 +17,6 @@ export const AutoImportDeps = () => {
|
||||
'@vueuse/core': [],
|
||||
},
|
||||
],
|
||||
resolvers: [ElementPlusResolver()],
|
||||
resolvers: [ElementPlusResolver(), VarletUIResolver()],
|
||||
});
|
||||
};
|
||||
|
42
index.html
42
index.html
@ -14,30 +14,32 @@
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
<script>
|
||||
document.addEventListener('touchstart', function (event) {
|
||||
if (event.touches.length > 1) {
|
||||
event.preventDefault();
|
||||
}
|
||||
});
|
||||
|
||||
var lastTouchEnd = 0;
|
||||
|
||||
document.addEventListener(
|
||||
'touchend',
|
||||
function (event) {
|
||||
var now = new Date().getTime();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
window.onload = function () {
|
||||
document.addEventListener('touchstart', function (event) {
|
||||
if (event.touches.length > 1) {
|
||||
event.preventDefault();
|
||||
}
|
||||
});
|
||||
|
||||
lastTouchEnd = now;
|
||||
},
|
||||
false,
|
||||
);
|
||||
var lastTouchEnd = 0;
|
||||
|
||||
document.addEventListener('gesturestart', function (event) {
|
||||
event.preventDefault();
|
||||
});
|
||||
document.addEventListener(
|
||||
'touchend',
|
||||
function (event) {
|
||||
var now = new Date().getTime();
|
||||
if (now - lastTouchEnd <= 300) {
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
lastTouchEnd = now;
|
||||
},
|
||||
false,
|
||||
);
|
||||
|
||||
document.addEventListener('gesturestart', function (event) {
|
||||
event.preventDefault();
|
||||
});
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -18,7 +18,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@nutui/nutui": "^3.2.3",
|
||||
"@varlet/ui": "^2.0.3",
|
||||
"@varlet/ui": "^2.0.5",
|
||||
"@vueuse/core": "9.3.1",
|
||||
"@vueuse/integrations": "9.3.1",
|
||||
"axios": "1.1.3",
|
||||
@ -33,8 +33,8 @@
|
||||
"vue-router": "^4.1.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "^5.40.0",
|
||||
"@typescript-eslint/parser": "^5.40.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
||||
"@typescript-eslint/parser": "^5.40.1",
|
||||
"@vitejs/plugin-legacy": "^2.2.0",
|
||||
"@vitejs/plugin-vue": "^3.1.2",
|
||||
"@vitejs/plugin-vue-jsx": "^2.0.1",
|
||||
@ -73,7 +73,7 @@
|
||||
"vite-plugin-eruda": "^1.0.1",
|
||||
"vite-plugin-imagemin": "^0.6.1",
|
||||
"vite-plugin-mock": "^2.9.6",
|
||||
"vite-plugin-pages": "^0.26.0",
|
||||
"vite-plugin-pages": "^0.27.0",
|
||||
"vite-plugin-progress": "^0.0.5",
|
||||
"vite-plugin-restart": "^0.2.0",
|
||||
"vite-plugin-style-import": "^2.0.0",
|
||||
|
147
yarn.lock
147
yarn.lock
@ -798,6 +798,11 @@
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/semver@^7.3.12":
|
||||
version "7.3.12"
|
||||
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.12.tgz#920447fdd78d76b19de0438b7f60df3c4a80bf1c"
|
||||
integrity sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==
|
||||
|
||||
"@types/svgo@*", "@types/svgo@^2.6.1":
|
||||
version "2.6.3"
|
||||
resolved "https://registry.yarnpkg.com/@types/svgo/-/svgo-2.6.3.tgz#0786d8329b67cd48d84e57cb92b79832b85e6c8e"
|
||||
@ -810,85 +815,86 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz#1d12873a8e49567371f2a75fe3e7f7edca6662d8"
|
||||
integrity sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==
|
||||
|
||||
"@typescript-eslint/eslint-plugin@^5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.40.0.tgz#0159bb71410eec563968288a17bd4478cdb685bd"
|
||||
integrity sha512-FIBZgS3DVJgqPwJzvZTuH4HNsZhHMa9SjxTKAZTlMsPw/UzpEjcf9f4dfgDJEHjK+HboUJo123Eshl6niwEm/Q==
|
||||
"@typescript-eslint/eslint-plugin@^5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.40.1.tgz#3203a6ff396b1194083faaa6e5110c401201d7d5"
|
||||
integrity sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager" "5.40.0"
|
||||
"@typescript-eslint/type-utils" "5.40.0"
|
||||
"@typescript-eslint/utils" "5.40.0"
|
||||
"@typescript-eslint/scope-manager" "5.40.1"
|
||||
"@typescript-eslint/type-utils" "5.40.1"
|
||||
"@typescript-eslint/utils" "5.40.1"
|
||||
debug "^4.3.4"
|
||||
ignore "^5.2.0"
|
||||
regexpp "^3.2.0"
|
||||
semver "^7.3.7"
|
||||
tsutils "^3.21.0"
|
||||
|
||||
"@typescript-eslint/parser@^5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.40.0.tgz#432bddc1fe9154945660f67c1ba6d44de5014840"
|
||||
integrity sha512-Ah5gqyX2ySkiuYeOIDg7ap51/b63QgWZA7w6AHtFrag7aH0lRQPbLzUjk0c9o5/KZ6JRkTTDKShL4AUrQa6/hw==
|
||||
"@typescript-eslint/parser@^5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.40.1.tgz#e7f8295dd8154d0d37d661ddd8e2f0ecfdee28dd"
|
||||
integrity sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager" "5.40.0"
|
||||
"@typescript-eslint/types" "5.40.0"
|
||||
"@typescript-eslint/typescript-estree" "5.40.0"
|
||||
"@typescript-eslint/scope-manager" "5.40.1"
|
||||
"@typescript-eslint/types" "5.40.1"
|
||||
"@typescript-eslint/typescript-estree" "5.40.1"
|
||||
debug "^4.3.4"
|
||||
|
||||
"@typescript-eslint/scope-manager@5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.40.0.tgz#d6ea782c8e3a2371ba3ea31458dcbdc934668fc4"
|
||||
integrity sha512-d3nPmjUeZtEWRvyReMI4I1MwPGC63E8pDoHy0BnrYjnJgilBD3hv7XOiETKLY/zTwI7kCnBDf2vWTRUVpYw0Uw==
|
||||
"@typescript-eslint/scope-manager@5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz#a7a5197dfd234622a2421ea590ee0ccc02e18dfe"
|
||||
integrity sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==
|
||||
dependencies:
|
||||
"@typescript-eslint/types" "5.40.0"
|
||||
"@typescript-eslint/visitor-keys" "5.40.0"
|
||||
"@typescript-eslint/types" "5.40.1"
|
||||
"@typescript-eslint/visitor-keys" "5.40.1"
|
||||
|
||||
"@typescript-eslint/type-utils@5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.40.0.tgz#4964099d0158355e72d67a370249d7fc03331126"
|
||||
integrity sha512-nfuSdKEZY2TpnPz5covjJqav+g5qeBqwSHKBvz7Vm1SAfy93SwKk/JeSTymruDGItTwNijSsno5LhOHRS1pcfw==
|
||||
"@typescript-eslint/type-utils@5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.40.1.tgz#091e4ce3bebbdb68f4980bae9dee2e4e1725f601"
|
||||
integrity sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==
|
||||
dependencies:
|
||||
"@typescript-eslint/typescript-estree" "5.40.0"
|
||||
"@typescript-eslint/utils" "5.40.0"
|
||||
"@typescript-eslint/typescript-estree" "5.40.1"
|
||||
"@typescript-eslint/utils" "5.40.1"
|
||||
debug "^4.3.4"
|
||||
tsutils "^3.21.0"
|
||||
|
||||
"@typescript-eslint/types@5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.40.0.tgz#8de07e118a10b8f63c99e174a3860f75608c822e"
|
||||
integrity sha512-V1KdQRTXsYpf1Y1fXCeZ+uhjW48Niiw0VGt4V8yzuaDTU8Z1Xl7yQDyQNqyAFcVhpYXIVCEuxSIWTsLDpHgTbw==
|
||||
"@typescript-eslint/types@5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.40.1.tgz#de37f4f64de731ee454bb2085d71030aa832f749"
|
||||
integrity sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==
|
||||
|
||||
"@typescript-eslint/typescript-estree@5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.0.tgz#e305e6a5d65226efa5471ee0f12e0ffaab6d3075"
|
||||
integrity sha512-b0GYlDj8TLTOqwX7EGbw2gL5EXS2CPEWhF9nGJiGmEcmlpNBjyHsTwbqpyIEPVpl6br4UcBOYlcI2FJVtJkYhg==
|
||||
"@typescript-eslint/typescript-estree@5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz#9a7d25492f02c69882ce5e0cd1857b0c55645d72"
|
||||
integrity sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==
|
||||
dependencies:
|
||||
"@typescript-eslint/types" "5.40.0"
|
||||
"@typescript-eslint/visitor-keys" "5.40.0"
|
||||
"@typescript-eslint/types" "5.40.1"
|
||||
"@typescript-eslint/visitor-keys" "5.40.1"
|
||||
debug "^4.3.4"
|
||||
globby "^11.1.0"
|
||||
is-glob "^4.0.3"
|
||||
semver "^7.3.7"
|
||||
tsutils "^3.21.0"
|
||||
|
||||
"@typescript-eslint/utils@5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.40.0.tgz#647f56a875fd09d33c6abd70913c3dd50759b772"
|
||||
integrity sha512-MO0y3T5BQ5+tkkuYZJBjePewsY+cQnfkYeRqS6tPh28niiIwPnQ1t59CSRcs1ZwJJNOdWw7rv9pF8aP58IMihA==
|
||||
"@typescript-eslint/utils@5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.40.1.tgz#3204fb73a559d3b7bab7dc9d3c44487c2734a9ca"
|
||||
integrity sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==
|
||||
dependencies:
|
||||
"@types/json-schema" "^7.0.9"
|
||||
"@typescript-eslint/scope-manager" "5.40.0"
|
||||
"@typescript-eslint/types" "5.40.0"
|
||||
"@typescript-eslint/typescript-estree" "5.40.0"
|
||||
"@types/semver" "^7.3.12"
|
||||
"@typescript-eslint/scope-manager" "5.40.1"
|
||||
"@typescript-eslint/types" "5.40.1"
|
||||
"@typescript-eslint/typescript-estree" "5.40.1"
|
||||
eslint-scope "^5.1.1"
|
||||
eslint-utils "^3.0.0"
|
||||
semver "^7.3.7"
|
||||
|
||||
"@typescript-eslint/visitor-keys@5.40.0":
|
||||
version "5.40.0"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.0.tgz#dd2d38097f68e0d2e1e06cb9f73c0173aca54b68"
|
||||
integrity sha512-ijJ+6yig+x9XplEpG2K6FUdJeQGGj/15U3S56W9IqXKJqleuD7zJ2AX/miLezwxpd7ZxDAqO87zWufKg+RPZyQ==
|
||||
"@typescript-eslint/visitor-keys@5.40.1":
|
||||
version "5.40.1"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz#f3d2bf5af192f4432b84cec6fdcb387193518754"
|
||||
integrity sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==
|
||||
dependencies:
|
||||
"@typescript-eslint/types" "5.40.0"
|
||||
"@typescript-eslint/types" "5.40.1"
|
||||
eslint-visitor-keys "^3.3.0"
|
||||
|
||||
"@vant/icons@^1.8.0":
|
||||
@ -908,28 +914,28 @@
|
||||
resolved "https://registry.yarnpkg.com/@vant/use/-/use-1.4.2.tgz#57e29f57b408b573a784793430891012a9e12d21"
|
||||
integrity sha512-+30mOa/FY26qk8Ag/Cmqb51JaOgE9rS1xDS24yDx4aHixMhTZH2QsuFGrQVPEazkeK8R+p14oW28kK3146Gtbg==
|
||||
|
||||
"@varlet/icons@2.0.3":
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@varlet/icons/-/icons-2.0.3.tgz#8d5c111e85de022c54335c63308fc3667bf081fa"
|
||||
integrity sha512-qzhrhyWf7mNOjYjWfRluR4xO1u+x0XLd1ShJt3Obj/j3+MJnzusZxLczsRacl7gPx5j4H9YwBOwfv2eYWH4vKw==
|
||||
"@varlet/icons@2.0.5":
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@varlet/icons/-/icons-2.0.5.tgz#ec92e7f679996943f92c4e4605b564462d3bdd84"
|
||||
integrity sha512-vhkKsxnk5wj8X9HVRz2AdgNBTplnWxswyfLgeLiL2tBdh0TGN0JQyfDAVGNY8AVEG0pOcgY35d7oaPHa7aRF5w==
|
||||
dependencies:
|
||||
commander "^6.2.1"
|
||||
fs-extra "^9.0.1"
|
||||
webfont "^9.0.0"
|
||||
|
||||
"@varlet/shared@2.0.3":
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@varlet/shared/-/shared-2.0.3.tgz#45a3be27eb2cac046bc548a7039878a70f0ee0bc"
|
||||
integrity sha512-S0L9i2ubCBuKkEU9mP2zcKd52aGe/HGSbDZy4+VaDZG88BBXzjtWcYZon2gbUbXe6LTpLgdZxR0MYR6hHLlq1w==
|
||||
"@varlet/shared@2.0.5":
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@varlet/shared/-/shared-2.0.5.tgz#aab764491f2e1c68c0769ca4db601b79b2293ae2"
|
||||
integrity sha512-+nk8xRX8P+VpWBDf0x/DzLfqVkWfDFe4YHyNJkJKCBc/A+QydxjyiRXb/u/3YcnDH2uWof92Z/f6IBVCb+1+HA==
|
||||
|
||||
"@varlet/ui@^2.0.3":
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@varlet/ui/-/ui-2.0.3.tgz#5d106143919ce05dd01da68f7db66c9f3e63cb97"
|
||||
integrity sha512-zrHnH6KS+uxDhz/jlotTLR5JHK8JUkFJXxGfQkUvkRS26apWpPLmVPXebPtFzYkwMmdGOG2AZjPrR7bkig7LFA==
|
||||
"@varlet/ui@^2.0.5":
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@varlet/ui/-/ui-2.0.5.tgz#92b04bcd81b1f10b2e1138ab77810ddad07e789e"
|
||||
integrity sha512-3HcYraJl6oVMVbhSsSCYvXPd/lcdFROeG7S2k62DdMGhflOyYk0bPXwBmRlpgzLoFyb+kgxquQBeeRFGrER00A==
|
||||
dependencies:
|
||||
"@popperjs/core" "^2.11.6"
|
||||
"@varlet/icons" "2.0.3"
|
||||
"@varlet/shared" "2.0.3"
|
||||
"@varlet/icons" "2.0.5"
|
||||
"@varlet/shared" "2.0.5"
|
||||
dayjs "^1.10.4"
|
||||
decimal.js "^10.2.1"
|
||||
|
||||
@ -7995,20 +8001,20 @@ vite-plugin-mock@^2.9.6:
|
||||
fast-glob "^3.2.7"
|
||||
path-to-regexp "^6.2.0"
|
||||
|
||||
vite-plugin-pages@^0.26.0:
|
||||
version "0.26.0"
|
||||
resolved "https://registry.yarnpkg.com/vite-plugin-pages/-/vite-plugin-pages-0.26.0.tgz#2acf077b759fd4e34d0f9677ab1c32692e12249e"
|
||||
integrity sha512-yJZvwHEt7puYIf19S89IvkDsWPjWleSied4H8hmdW6i8buCA93z1UAU1ipW1d8fNKrC4FzXsUHHbPm6+kl1p9w==
|
||||
vite-plugin-pages@^0.27.0:
|
||||
version "0.27.0"
|
||||
resolved "https://registry.yarnpkg.com/vite-plugin-pages/-/vite-plugin-pages-0.27.0.tgz#cad5427ca2a8b18602885c71ba7c54de40d1e143"
|
||||
integrity sha512-fLuBd8U9jcfB+MXj9yEsq6AHa0AHCP4Fhi7LCcCWJeL28Lx3o5B0uoBUhCZ+xwsnNs4GZwPOfgBG3yHKMsMNnA==
|
||||
dependencies:
|
||||
"@types/debug" "^4.1.7"
|
||||
debug "^4.3.4"
|
||||
deep-equal "^2.0.5"
|
||||
extract-comments "^1.1.0"
|
||||
fast-glob "^3.2.11"
|
||||
fast-glob "^3.2.12"
|
||||
json5 "^2.2.1"
|
||||
local-pkg "^0.4.2"
|
||||
picocolors "^1.0.0"
|
||||
yaml "^2.1.1"
|
||||
yaml "^2.1.3"
|
||||
|
||||
vite-plugin-progress@^0.0.5:
|
||||
version "0.0.5"
|
||||
@ -8354,6 +8360,11 @@ yaml@^2.1.1:
|
||||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.1.tgz#1e06fb4ca46e60d9da07e4f786ea370ed3c3cfec"
|
||||
integrity sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==
|
||||
|
||||
yaml@^2.1.3:
|
||||
version "2.1.3"
|
||||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.3.tgz#9b3a4c8aff9821b696275c79a8bee8399d945207"
|
||||
integrity sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==
|
||||
|
||||
yargs-parser@^10.0.0:
|
||||
version "10.1.0"
|
||||
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8"
|
||||
|
Loading…
x
Reference in New Issue
Block a user