Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.

Commit 61892da

Browse files
committed
chore(deps): update dependency eslint-plugin-import to v2.22.0
1 parent 2949bf7 commit 61892da

2 files changed

Lines changed: 184 additions & 28 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"eslint-config-prettier": "2.9.0",
5050
"eslint-formatter-pretty": "1.3.0",
5151
"eslint-import-resolver-babel-module": "4.0.0",
52-
"eslint-plugin-import": "2.9.0",
52+
"eslint-plugin-import": "2.22.0",
5353
"eslint-plugin-jest": "21.15.0",
5454
"eslint-plugin-jsx-a11y": "6.0.3",
5555
"eslint-plugin-prettier": "2.6.0",

yarn.lock

Lines changed: 183 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@
115115
version "0.0.38"
116116
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.38.tgz#c1be40aa933723c608820a99a373a16d215a1ca2"
117117

118+
"@types/json5@^0.0.29":
119+
version "0.0.29"
120+
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
121+
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
122+
118123
JSONStream@^1.0.4:
119124
version "1.3.2"
120125
resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea"
@@ -330,6 +335,15 @@ array-includes@^3.0.3:
330335
define-properties "^1.1.2"
331336
es-abstract "^1.7.0"
332337

338+
array-includes@^3.1.1:
339+
version "3.1.1"
340+
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
341+
integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
342+
dependencies:
343+
define-properties "^1.1.3"
344+
es-abstract "^1.17.0"
345+
is-string "^1.0.5"
346+
333347
array-union@^1.0.1:
334348
version "1.0.2"
335349
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
@@ -348,6 +362,14 @@ array-unique@^0.3.2:
348362
version "0.3.2"
349363
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
350364

365+
array.prototype.flat@^1.2.3:
366+
version "1.2.3"
367+
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
368+
integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
369+
dependencies:
370+
define-properties "^1.1.3"
371+
es-abstract "^1.17.0-next.1"
372+
351373
arrify@^1.0.0, arrify@^1.0.1:
352374
version "1.0.1"
353375
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
@@ -1261,7 +1283,7 @@ bser@^2.0.0:
12611283
dependencies:
12621284
node-int64 "^0.4.0"
12631285

1264-
builtin-modules@^1.0.0, builtin-modules@^1.1.1:
1286+
builtin-modules@^1.0.0:
12651287
version "1.1.1"
12661288
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
12671289

@@ -2004,6 +2026,13 @@ define-properties@^1.1.2:
20042026
foreach "^2.0.5"
20052027
object-keys "^1.0.8"
20062028

2029+
define-properties@^1.1.3:
2030+
version "1.1.3"
2031+
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
2032+
integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
2033+
dependencies:
2034+
object-keys "^1.0.12"
2035+
20072036
define-property@^0.2.5:
20082037
version "0.2.5"
20092038
resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
@@ -2144,6 +2173,23 @@ error-ex@^1.2.0, error-ex@^1.3.1:
21442173
dependencies:
21452174
is-arrayish "^0.2.1"
21462175

2176+
es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5:
2177+
version "1.17.6"
2178+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a"
2179+
integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==
2180+
dependencies:
2181+
es-to-primitive "^1.2.1"
2182+
function-bind "^1.1.1"
2183+
has "^1.0.3"
2184+
has-symbols "^1.0.1"
2185+
is-callable "^1.2.0"
2186+
is-regex "^1.1.0"
2187+
object-inspect "^1.7.0"
2188+
object-keys "^1.1.1"
2189+
object.assign "^4.1.0"
2190+
string.prototype.trimend "^1.0.1"
2191+
string.prototype.trimstart "^1.0.1"
2192+
21472193
es-abstract@^1.5.1, es-abstract@^1.7.0:
21482194
version "1.10.0"
21492195
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
@@ -2162,6 +2208,15 @@ es-to-primitive@^1.1.1:
21622208
is-date-object "^1.0.1"
21632209
is-symbol "^1.0.1"
21642210

2211+
es-to-primitive@^1.2.1:
2212+
version "1.2.1"
2213+
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
2214+
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
2215+
dependencies:
2216+
is-callable "^1.1.4"
2217+
is-date-object "^1.0.1"
2218+
is-symbol "^1.0.2"
2219+
21652220
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
21662221
version "1.0.5"
21672222
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
@@ -2212,34 +2267,40 @@ eslint-import-resolver-babel-module@4.0.0:
22122267
pkg-up "^2.0.0"
22132268
resolve "^1.4.0"
22142269

2215-
eslint-import-resolver-node@^0.3.1:
2216-
version "0.3.2"
2217-
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
2270+
eslint-import-resolver-node@^0.3.3:
2271+
version "0.3.4"
2272+
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
2273+
integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
22182274
dependencies:
22192275
debug "^2.6.9"
2220-
resolve "^1.5.0"
2276+
resolve "^1.13.1"
22212277

2222-
eslint-module-utils@^2.1.1:
2223-
version "2.1.1"
2224-
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
2278+
eslint-module-utils@^2.6.0:
2279+
version "2.6.0"
2280+
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6"
2281+
integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==
22252282
dependencies:
2226-
debug "^2.6.8"
2227-
pkg-dir "^1.0.0"
2283+
debug "^2.6.9"
2284+
pkg-dir "^2.0.0"
22282285

2229-
eslint-plugin-import@2.9.0:
2230-
version "2.9.0"
2231-
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz#26002efbfca5989b7288ac047508bd24f217b169"
2286+
eslint-plugin-import@2.22.0:
2287+
version "2.22.0"
2288+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e"
2289+
integrity sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg==
22322290
dependencies:
2233-
builtin-modules "^1.1.1"
2291+
array-includes "^3.1.1"
2292+
array.prototype.flat "^1.2.3"
22342293
contains-path "^0.1.0"
2235-
debug "^2.6.8"
2294+
debug "^2.6.9"
22362295
doctrine "1.5.0"
2237-
eslint-import-resolver-node "^0.3.1"
2238-
eslint-module-utils "^2.1.1"
2239-
has "^1.0.1"
2240-
lodash "^4.17.4"
2241-
minimatch "^3.0.3"
2296+
eslint-import-resolver-node "^0.3.3"
2297+
eslint-module-utils "^2.6.0"
2298+
has "^1.0.3"
2299+
minimatch "^3.0.4"
2300+
object.values "^1.1.1"
22422301
read-pkg-up "^2.0.0"
2302+
resolve "^1.17.0"
2303+
tsconfig-paths "^3.9.0"
22432304

22442305
eslint-plugin-jest@21.15.0:
22452306
version "21.15.0"
@@ -3125,6 +3186,11 @@ has-symbols@^1.0.0:
31253186
version "1.0.0"
31263187
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
31273188

3189+
has-symbols@^1.0.1:
3190+
version "1.0.1"
3191+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
3192+
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
3193+
31283194
has-unicode@^2.0.0:
31293195
version "2.0.1"
31303196
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
@@ -3162,6 +3228,13 @@ has@^1.0.1:
31623228
dependencies:
31633229
function-bind "^1.0.2"
31643230

3231+
has@^1.0.3:
3232+
version "1.0.3"
3233+
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
3234+
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
3235+
dependencies:
3236+
function-bind "^1.1.1"
3237+
31653238
hawk@3.1.3, hawk@~3.1.3:
31663239
version "3.1.3"
31673240
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
@@ -3404,6 +3477,11 @@ is-callable@^1.1.1, is-callable@^1.1.3:
34043477
version "1.1.3"
34053478
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
34063479

3480+
is-callable@^1.1.4, is-callable@^1.2.0:
3481+
version "1.2.0"
3482+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb"
3483+
integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==
3484+
34073485
is-ci@^1.0.10:
34083486
version "1.1.0"
34093487
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
@@ -3602,6 +3680,13 @@ is-regex@^1.0.4:
36023680
dependencies:
36033681
has "^1.0.1"
36043682

3683+
is-regex@^1.1.0:
3684+
version "1.1.0"
3685+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff"
3686+
integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==
3687+
dependencies:
3688+
has-symbols "^1.0.1"
3689+
36053690
is-regexp@^1.0.0:
36063691
version "1.0.0"
36073692
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
@@ -3618,6 +3703,11 @@ is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
36183703
version "1.1.0"
36193704
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
36203705

3706+
is-string@^1.0.5:
3707+
version "1.0.5"
3708+
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
3709+
integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
3710+
36213711
is-subset@^0.1.1:
36223712
version "0.1.1"
36233713
resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
@@ -3626,6 +3716,13 @@ is-symbol@^1.0.1:
36263716
version "1.0.1"
36273717
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
36283718

3719+
is-symbol@^1.0.2:
3720+
version "1.0.3"
3721+
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
3722+
integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
3723+
dependencies:
3724+
has-symbols "^1.0.1"
3725+
36293726
is-text-path@^1.0.0:
36303727
version "1.0.1"
36313728
resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
@@ -4228,6 +4325,13 @@ json5@^0.5.1:
42284325
version "0.5.1"
42294326
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
42304327

4328+
json5@^1.0.1:
4329+
version "1.0.1"
4330+
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
4331+
integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
4332+
dependencies:
4333+
minimist "^1.2.0"
4334+
42314335
jsonfile@^2.1.0:
42324336
version "2.4.0"
42334337
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
@@ -4914,17 +5018,27 @@ object-filter@^1.0.2:
49145018
version "1.0.2"
49155019
resolved "https://registry.yarnpkg.com/object-filter/-/object-filter-1.0.2.tgz#af0b797ffebeaf8a52c6637cedbe8816cfec1bc8"
49165020

5021+
object-inspect@^1.7.0:
5022+
version "1.8.0"
5023+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"
5024+
integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==
5025+
49175026
object-keys@^1.0.11, object-keys@^1.0.8:
49185027
version "1.0.11"
49195028
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
49205029

5030+
object-keys@^1.0.12, object-keys@^1.1.1:
5031+
version "1.1.1"
5032+
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
5033+
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
5034+
49215035
object-visit@^1.0.0:
49225036
version "1.0.1"
49235037
resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
49245038
dependencies:
49255039
isobject "^3.0.0"
49265040

4927-
object.assign@^4.0.4:
5041+
object.assign@^4.0.4, object.assign@^4.1.0:
49285042
version "4.1.0"
49295043
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
49305044
dependencies:
@@ -4953,6 +5067,16 @@ object.pick@^1.3.0:
49535067
dependencies:
49545068
isobject "^3.0.1"
49555069

5070+
object.values@^1.1.1:
5071+
version "1.1.1"
5072+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
5073+
integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
5074+
dependencies:
5075+
define-properties "^1.1.3"
5076+
es-abstract "^1.17.0-next.1"
5077+
function-bind "^1.1.1"
5078+
has "^1.0.3"
5079+
49565080
once@^1.3.0, once@^1.3.3, once@^1.4.0:
49575081
version "1.4.0"
49585082
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
@@ -5148,6 +5272,11 @@ path-parse@^1.0.5:
51485272
version "1.0.5"
51495273
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
51505274

5275+
path-parse@^1.0.6:
5276+
version "1.0.6"
5277+
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
5278+
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
5279+
51515280
path-type@^1.0.0:
51525281
version "1.1.0"
51535282
resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
@@ -5200,12 +5329,6 @@ pinkie@^2.0.0:
52005329
version "2.0.4"
52015330
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
52025331

5203-
pkg-dir@^1.0.0:
5204-
version "1.0.0"
5205-
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
5206-
dependencies:
5207-
find-up "^1.0.0"
5208-
52095332
pkg-dir@^2.0.0:
52105333
version "2.0.0"
52115334
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
@@ -5669,6 +5792,13 @@ resolve@^1.1.6, resolve@^1.4.0, resolve@^1.5.0:
56695792
dependencies:
56705793
path-parse "^1.0.5"
56715794

5795+
resolve@^1.13.1, resolve@^1.17.0:
5796+
version "1.17.0"
5797+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
5798+
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
5799+
dependencies:
5800+
path-parse "^1.0.6"
5801+
56725802
restore-cursor@^1.0.1:
56735803
version "1.0.1"
56745804
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
@@ -6187,6 +6317,22 @@ string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
61876317
is-fullwidth-code-point "^2.0.0"
61886318
strip-ansi "^4.0.0"
61896319

6320+
string.prototype.trimend@^1.0.1:
6321+
version "1.0.1"
6322+
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
6323+
integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==
6324+
dependencies:
6325+
define-properties "^1.1.3"
6326+
es-abstract "^1.17.5"
6327+
6328+
string.prototype.trimstart@^1.0.1:
6329+
version "1.0.1"
6330+
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"
6331+
integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==
6332+
dependencies:
6333+
define-properties "^1.1.3"
6334+
es-abstract "^1.17.5"
6335+
61906336
string_decoder@~1.0.3:
61916337
version "1.0.3"
61926338
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
@@ -6476,6 +6622,16 @@ trim-right@^1.0.1:
64766622
version "1.0.1"
64776623
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
64786624

6625+
tsconfig-paths@^3.9.0:
6626+
version "3.9.0"
6627+
resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b"
6628+
integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==
6629+
dependencies:
6630+
"@types/json5" "^0.0.29"
6631+
json5 "^1.0.1"
6632+
minimist "^1.2.0"
6633+
strip-bom "^3.0.0"
6634+
64796635
tunnel-agent@^0.6.0:
64806636
version "0.6.0"
64816637
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"

0 commit comments

Comments
 (0)