Skip to content

Commit 4e35fd3

Browse files
authored
Merge branch 'main' into fix-completion-kind-info
2 parents 2231bfe + 485aed5 commit 4e35fd3

File tree

2 files changed

+116
-66
lines changed

2 files changed

+116
-66
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"devDependencies": {
1919
"@types/jest": "28.1.6",
2020
"@types/node": "12.20.55",
21-
"@typescript-eslint/eslint-plugin": "5.30.7",
22-
"@typescript-eslint/parser": "5.30.7",
23-
"eslint": "8.20.0",
21+
"@typescript-eslint/eslint-plugin": "5.31.0",
22+
"@typescript-eslint/parser": "5.31.0",
23+
"eslint": "8.21.0",
2424
"eslint-config-prettier": "8.5.0",
25-
"eslint-plugin-jest": "26.6.0",
25+
"eslint-plugin-jest": "26.7.0",
2626
"eslint-plugin-prettier": "4.2.1",
2727
"eslint-plugin-simple-import-sort": "7.0.0",
2828
"jest": "28.1.3",

yarn.lock

+112-62
Original file line numberDiff line numberDiff line change
@@ -344,15 +344,20 @@
344344
minimatch "^3.1.2"
345345
strip-json-comments "^3.1.1"
346346

347-
"@humanwhocodes/config-array@^0.9.2":
348-
version "0.9.5"
349-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
350-
integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
347+
"@humanwhocodes/config-array@^0.10.4":
348+
version "0.10.4"
349+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c"
350+
integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==
351351
dependencies:
352352
"@humanwhocodes/object-schema" "^1.2.1"
353353
debug "^4.1.1"
354354
minimatch "^3.0.4"
355355

356+
"@humanwhocodes/gitignore-to-minimatch@^1.0.2":
357+
version "1.0.2"
358+
resolved "https://registry.yarnpkg.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d"
359+
integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==
360+
356361
"@humanwhocodes/object-schema@^1.2.1":
357362
version "1.2.1"
358363
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
@@ -778,29 +783,29 @@
778783
dependencies:
779784
"@types/yargs-parser" "*"
780785

781-
"@typescript-eslint/eslint-plugin@5.30.7":
782-
version "5.30.7"
783-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.7.tgz#1621dabc1ae4084310e19e9efc80dfdbb97e7493"
784-
integrity sha512-l4L6Do+tfeM2OK0GJsU7TUcM/1oN/N25xHm3Jb4z3OiDU4Lj8dIuxX9LpVMS9riSXQs42D1ieX7b85/r16H9Fw==
786+
"@typescript-eslint/eslint-plugin@5.31.0":
787+
version "5.31.0"
788+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.31.0.tgz#cae1967b1e569e6171bbc6bec2afa4e0c8efccfe"
789+
integrity sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ==
785790
dependencies:
786-
"@typescript-eslint/scope-manager" "5.30.7"
787-
"@typescript-eslint/type-utils" "5.30.7"
788-
"@typescript-eslint/utils" "5.30.7"
791+
"@typescript-eslint/scope-manager" "5.31.0"
792+
"@typescript-eslint/type-utils" "5.31.0"
793+
"@typescript-eslint/utils" "5.31.0"
789794
debug "^4.3.4"
790795
functional-red-black-tree "^1.0.1"
791796
ignore "^5.2.0"
792797
regexpp "^3.2.0"
793798
semver "^7.3.7"
794799
tsutils "^3.21.0"
795800

796-
"@typescript-eslint/parser@5.30.7":
797-
version "5.30.7"
798-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.7.tgz#99d09729392aec9e64b1de45cd63cb81a4ddd980"
799-
integrity sha512-Rg5xwznHWWSy7v2o0cdho6n+xLhK2gntImp0rJroVVFkcYFYQ8C8UJTSuTw/3CnExBmPjycjmUJkxVmjXsld6A==
801+
"@typescript-eslint/parser@5.31.0":
802+
version "5.31.0"
803+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.31.0.tgz#7f42d7dcc68a0a6d80a0f3d9a65063aee7bb8d2c"
804+
integrity sha512-UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw==
800805
dependencies:
801-
"@typescript-eslint/scope-manager" "5.30.7"
802-
"@typescript-eslint/types" "5.30.7"
803-
"@typescript-eslint/typescript-estree" "5.30.7"
806+
"@typescript-eslint/scope-manager" "5.31.0"
807+
"@typescript-eslint/types" "5.31.0"
808+
"@typescript-eslint/typescript-estree" "5.31.0"
804809
debug "^4.3.4"
805810

806811
"@typescript-eslint/[email protected]":
@@ -811,20 +816,20 @@
811816
"@typescript-eslint/types" "5.23.0"
812817
"@typescript-eslint/visitor-keys" "5.23.0"
813818

814-
"@typescript-eslint/scope-manager@5.30.7":
815-
version "5.30.7"
816-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.7.tgz#8269a931ef1e5ae68b5eb80743cc515c4ffe3dd7"
817-
integrity sha512-7BM1bwvdF1UUvt+b9smhqdc/eniOnCKxQT/kj3oXtj3LqnTWCAM0qHRHfyzCzhEfWX0zrW7KqXXeE4DlchZBKw==
819+
"@typescript-eslint/scope-manager@5.31.0":
820+
version "5.31.0"
821+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.31.0.tgz#f47a794ba84d9b818ab7f8f44fff55a61016c606"
822+
integrity sha512-8jfEzBYDBG88rcXFxajdVavGxb5/XKXyvWgvD8Qix3EEJLCFIdVloJw+r9ww0wbyNLOTYyBsR+4ALNGdlalLLg==
818823
dependencies:
819-
"@typescript-eslint/types" "5.30.7"
820-
"@typescript-eslint/visitor-keys" "5.30.7"
824+
"@typescript-eslint/types" "5.31.0"
825+
"@typescript-eslint/visitor-keys" "5.31.0"
821826

822-
"@typescript-eslint/type-utils@5.30.7":
823-
version "5.30.7"
824-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.7.tgz#5693dc3db6f313f302764282d614cfdbc8a9fcfd"
825-
integrity sha512-nD5qAE2aJX/YLyKMvOU5jvJyku4QN5XBVsoTynFrjQZaDgDV6i7QHFiYCx10wvn7hFvfuqIRNBtsgaLe0DbWhw==
827+
"@typescript-eslint/type-utils@5.31.0":
828+
version "5.31.0"
829+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.31.0.tgz#70a0b7201360b5adbddb0c36080495aa08f6f3d9"
830+
integrity sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w==
826831
dependencies:
827-
"@typescript-eslint/utils" "5.30.7"
832+
"@typescript-eslint/utils" "5.31.0"
828833
debug "^4.3.4"
829834
tsutils "^3.21.0"
830835

@@ -833,10 +838,10 @@
833838
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.23.0.tgz#8733de0f58ae0ed318dbdd8f09868cdbf9f9ad09"
834839
integrity sha512-NfBsV/h4dir/8mJwdZz7JFibaKC3E/QdeMEDJhiAE3/eMkoniZ7MjbEMCGXw6MZnZDMN3G9S0mH/6WUIj91dmw==
835840

836-
"@typescript-eslint/types@5.30.7":
837-
version "5.30.7"
838-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.7.tgz#18331487cc92d0f1fb1a6f580c8ec832528079d0"
839-
integrity sha512-ocVkETUs82+U+HowkovV6uxf1AnVRKCmDRNUBUUo46/5SQv1owC/EBFkiu4MOHeZqhKz2ktZ3kvJJ1uFqQ8QPg==
841+
"@typescript-eslint/types@5.31.0":
842+
version "5.31.0"
843+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.31.0.tgz#7aa389122b64b18e473c1672fb3b8310e5f07a9a"
844+
integrity sha512-/f/rMaEseux+I4wmR6mfpM2wvtNZb1p9hAV77hWfuKc3pmaANp5dLAZSiE3/8oXTYTt3uV9KW5yZKJsMievp6g==
840845

841846
"@typescript-eslint/[email protected]":
842847
version "5.23.0"
@@ -851,28 +856,28 @@
851856
semver "^7.3.5"
852857
tsutils "^3.21.0"
853858

854-
"@typescript-eslint/typescript-estree@5.30.7":
855-
version "5.30.7"
856-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.7.tgz#05da9f1b281985bfedcf62349847f8d168eecc07"
857-
integrity sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==
859+
"@typescript-eslint/typescript-estree@5.31.0":
860+
version "5.31.0"
861+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.31.0.tgz#eb92970c9d6e3946690d50c346fb9b1d745ee882"
862+
integrity sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw==
858863
dependencies:
859-
"@typescript-eslint/types" "5.30.7"
860-
"@typescript-eslint/visitor-keys" "5.30.7"
864+
"@typescript-eslint/types" "5.31.0"
865+
"@typescript-eslint/visitor-keys" "5.31.0"
861866
debug "^4.3.4"
862867
globby "^11.1.0"
863868
is-glob "^4.0.3"
864869
semver "^7.3.7"
865870
tsutils "^3.21.0"
866871

867-
"@typescript-eslint/utils@5.30.7":
868-
version "5.30.7"
869-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.7.tgz#7135be070349e9f7caa262b0ca59dc96123351bb"
870-
integrity sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==
872+
"@typescript-eslint/utils@5.31.0":
873+
version "5.31.0"
874+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.31.0.tgz#e146fa00dca948bfe547d665b2138a2dc1b79acd"
875+
integrity sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg==
871876
dependencies:
872877
"@types/json-schema" "^7.0.9"
873-
"@typescript-eslint/scope-manager" "5.30.7"
874-
"@typescript-eslint/types" "5.30.7"
875-
"@typescript-eslint/typescript-estree" "5.30.7"
878+
"@typescript-eslint/scope-manager" "5.31.0"
879+
"@typescript-eslint/types" "5.31.0"
880+
"@typescript-eslint/typescript-estree" "5.31.0"
876881
eslint-scope "^5.1.1"
877882
eslint-utils "^3.0.0"
878883

@@ -896,12 +901,12 @@
896901
"@typescript-eslint/types" "5.23.0"
897902
eslint-visitor-keys "^3.0.0"
898903

899-
"@typescript-eslint/visitor-keys@5.30.7":
900-
version "5.30.7"
901-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.7.tgz#c093abae75b4fd822bfbad9fc337f38a7a14909a"
902-
integrity sha512-KrRXf8nnjvcpxDFOKej4xkD7657+PClJs5cJVSG7NNoCNnjEdc46juNAQt7AyuWctuCgs6mVRc1xGctEqrjxWw==
904+
"@typescript-eslint/visitor-keys@5.31.0":
905+
version "5.31.0"
906+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.31.0.tgz#b0eca264df01ce85dceb76aebff3784629258f54"
907+
integrity sha512-ZK0jVxSjS4gnPirpVjXHz7mgdOsZUHzNYSfTw2yPa3agfbt9YfqaBiBZFSSxeBWnpWkzCxTfUpnzA3Vily/CSg==
903908
dependencies:
904-
"@typescript-eslint/types" "5.30.7"
909+
"@typescript-eslint/types" "5.31.0"
905910
eslint-visitor-keys "^3.3.0"
906911

907912
acorn-jsx@^5.3.2:
@@ -914,6 +919,11 @@ acorn@^8.7.1:
914919
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
915920
integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
916921

922+
acorn@^8.8.0:
923+
version "8.8.0"
924+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8"
925+
integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==
926+
917927
ajv@^6.10.0, ajv@^6.12.4:
918928
version "6.12.6"
919929
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
@@ -1338,10 +1348,10 @@ [email protected]:
13381348
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1"
13391349
integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==
13401350

1341-
eslint-plugin-jest@26.6.0:
1342-
version "26.6.0"
1343-
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.6.0.tgz#546804fa42da75d7d58d4d3b278d5186abd3f6c0"
1344-
integrity sha512-f8n46/97ZFdU4KqeQYqO8AEVGIhHWvkpgNBWHH3jrM28/y8llnbf3IjfIKv6p2pZIMinK1PCqbbROxs9Eud02Q==
1351+
eslint-plugin-jest@26.7.0:
1352+
version "26.7.0"
1353+
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.7.0.tgz#41d405ac9143e1284a3401282db47ed459436778"
1354+
integrity sha512-/YNitdfG3o3cC6juZziAdkk6nfJt01jXVfj4AgaYVLs7bupHzRDL5K+eipdzhDXtQsiqaX1TzfwSuRlEgeln1A==
13451355
dependencies:
13461356
"@typescript-eslint/utils" "^5.10.0"
13471357

@@ -1390,13 +1400,14 @@ eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
13901400
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
13911401
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
13921402

1393-
eslint@8.20.0:
1394-
version "8.20.0"
1395-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.20.0.tgz#048ac56aa18529967da8354a478be4ec0a2bc81b"
1396-
integrity sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==
1403+
eslint@8.21.0:
1404+
version "8.21.0"
1405+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.21.0.tgz#1940a68d7e0573cef6f50037addee295ff9be9ef"
1406+
integrity sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==
13971407
dependencies:
13981408
"@eslint/eslintrc" "^1.3.0"
1399-
"@humanwhocodes/config-array" "^0.9.2"
1409+
"@humanwhocodes/config-array" "^0.10.4"
1410+
"@humanwhocodes/gitignore-to-minimatch" "^1.0.2"
14001411
ajv "^6.10.0"
14011412
chalk "^4.0.0"
14021413
cross-spawn "^7.0.2"
@@ -1406,14 +1417,17 @@ [email protected]:
14061417
eslint-scope "^7.1.1"
14071418
eslint-utils "^3.0.0"
14081419
eslint-visitor-keys "^3.3.0"
1409-
espree "^9.3.2"
1420+
espree "^9.3.3"
14101421
esquery "^1.4.0"
14111422
esutils "^2.0.2"
14121423
fast-deep-equal "^3.1.3"
14131424
file-entry-cache "^6.0.1"
1425+
find-up "^5.0.0"
14141426
functional-red-black-tree "^1.0.1"
14151427
glob-parent "^6.0.1"
14161428
globals "^13.15.0"
1429+
globby "^11.1.0"
1430+
grapheme-splitter "^1.0.4"
14171431
ignore "^5.2.0"
14181432
import-fresh "^3.0.0"
14191433
imurmurhash "^0.1.4"
@@ -1440,6 +1454,15 @@ espree@^9.3.2:
14401454
acorn-jsx "^5.3.2"
14411455
eslint-visitor-keys "^3.3.0"
14421456

1457+
espree@^9.3.3:
1458+
version "9.3.3"
1459+
resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.3.tgz#2dd37c4162bb05f433ad3c1a52ddf8a49dc08e9d"
1460+
integrity sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==
1461+
dependencies:
1462+
acorn "^8.8.0"
1463+
acorn-jsx "^5.3.2"
1464+
eslint-visitor-keys "^3.3.0"
1465+
14431466
esprima@^4.0.0:
14441467
version "4.0.1"
14451468
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
@@ -1592,6 +1615,14 @@ find-up@^4.0.0, find-up@^4.1.0:
15921615
locate-path "^5.0.0"
15931616
path-exists "^4.0.0"
15941617

1618+
find-up@^5.0.0:
1619+
version "5.0.0"
1620+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
1621+
integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
1622+
dependencies:
1623+
locate-path "^6.0.0"
1624+
path-exists "^4.0.0"
1625+
15951626
flat-cache@^3.0.4:
15961627
version "3.0.4"
15971628
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
@@ -1702,6 +1733,11 @@ graceful-fs@^4.2.9:
17021733
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
17031734
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
17041735

1736+
grapheme-splitter@^1.0.4:
1737+
version "1.0.4"
1738+
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
1739+
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
1740+
17051741
has-flag@^3.0.0:
17061742
version "3.0.0"
17071743
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
@@ -2349,6 +2385,13 @@ locate-path@^5.0.0:
23492385
dependencies:
23502386
p-locate "^4.1.0"
23512387

2388+
locate-path@^6.0.0:
2389+
version "6.0.0"
2390+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
2391+
integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
2392+
dependencies:
2393+
p-locate "^5.0.0"
2394+
23522395
23532396
version "4.1.2"
23542397
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
@@ -2519,7 +2562,7 @@ p-limit@^2.2.0:
25192562
dependencies:
25202563
p-try "^2.0.0"
25212564

2522-
p-limit@^3.1.0:
2565+
p-limit@^3.0.2, p-limit@^3.1.0:
25232566
version "3.1.0"
25242567
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
25252568
integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
@@ -2533,6 +2576,13 @@ p-locate@^4.1.0:
25332576
dependencies:
25342577
p-limit "^2.2.0"
25352578

2579+
p-locate@^5.0.0:
2580+
version "5.0.0"
2581+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
2582+
integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
2583+
dependencies:
2584+
p-limit "^3.0.2"
2585+
25362586
p-try@^2.0.0:
25372587
version "2.2.0"
25382588
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"

0 commit comments

Comments
 (0)