Skip to content

Commit 35d3022

Browse files
authoredJul 1, 2022
fix: try index.d.ts automatically (#121)
1 parent 5e2ec07 commit 35d3022

File tree

5 files changed

+143
-37
lines changed

5 files changed

+143
-37
lines changed
 

‎.changeset/tame-panthers-cheat.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"eslint-import-resolver-typescript": patch
3+
---
4+
5+
fix: try index.d.ts automatically

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"synckit": "^0.7.1"
7272
},
7373
"devDependencies": {
74-
"@1stg/lib-config": "^7.0.0",
74+
"@1stg/lib-config": "^7.1.0",
7575
"@changesets/changelog-github": "^0.4.5",
7676
"@changesets/cli": "^2.23.0",
7777
"@mozilla/glean": "^1.0.0",

‎src/.eslintrc

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "@1stg"
2+
"extends": "@1stg",
3+
"rules": {
4+
"regexp/no-unused-capturing-group": "off"
5+
}
36
}

‎src/index.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,12 @@ function getMappedPath(
277277
getMappedPath(basename + tsExt, file) ||
278278
getMappedPath(source + '/index.ts', file) ||
279279
getMappedPath(source + '/index.tsx', file) ||
280-
getMappedPath(source + '/index.js', file) ||
280+
getMappedPath(source + '/index.d.ts', file) ||
281281
getMappedPath(
282282
basename + '.d' + (tsExt === '.tsx' ? '.ts' : tsExt),
283283
file,
284-
false,
285-
)
284+
) ||
285+
getMappedPath(source + '/index.js', file)
286286
)
287287
}
288288
return (
@@ -292,6 +292,7 @@ function getMappedPath(
292292
getMappedPath(source + '.d.ts', file) ||
293293
getMappedPath(source + '/index.ts', file) ||
294294
getMappedPath(source + '/index.tsx', file) ||
295+
getMappedPath(source + '/index.d.ts', file) ||
295296
getMappedPath(source + '/index.js', file)
296297
)
297298
}

‎yarn.lock

+129-32
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"@commitlint/config-lerna-scopes" "^17.0.2"
3636
"@pkgr/utils" "^2.2.0"
3737

38-
"@1stg/common-config@^5.0.0":
39-
version "5.0.0"
40-
resolved "https://registry.yarnpkg.com/@1stg/common-config/-/common-config-5.0.0.tgz#0df8582d0265d891d75bc1d4724132828edf711f"
41-
integrity sha512-fwrmn08Pv+149k4EojheEyhHUieqOFX/HL9hEgPxo0790bl8D64J3nb7uUTFz+2OR5H4YUKYoEUqThkeMzhXGQ==
38+
"@1stg/common-config@^5.1.0":
39+
version "5.1.0"
40+
resolved "https://registry.yarnpkg.com/@1stg/common-config/-/common-config-5.1.0.tgz#c6dc75727c2bb5b231c425f5ec66a108732f0f1f"
41+
integrity sha512-Z1i2C22j6ZO35ufliHtaxen2wag3Dr+qIQ4i5GbHBCYH4c/r4byNGUvaB63JcI6AjfYTonYuoEbjJ4oTRd49Ww==
4242
dependencies:
4343
"@1stg/babel-preset" "^3.1.0"
4444
"@1stg/commitlint-config" "^3.1.0"
45-
"@1stg/eslint-config" "^5.0.0"
45+
"@1stg/eslint-config" "^5.1.0"
4646
"@1stg/lint-staged" "^3.0.0"
4747
"@1stg/markuplint-config" "^2.1.0"
4848
"@1stg/prettier-config" "^3.3.0"
@@ -59,10 +59,10 @@
5959
tslib "^2.4.0"
6060
yarn-deduplicate "^5.0.0"
6161

62-
"@1stg/eslint-config@^5.0.0":
63-
version "5.0.0"
64-
resolved "https://registry.yarnpkg.com/@1stg/eslint-config/-/eslint-config-5.0.0.tgz#5f1f9e8bbb8ae878c979723d80770800f47bd8ba"
65-
integrity sha512-O/koJD/PZSi/AglcLidT5ky/Mwvo6a9A6NTzei6gOL3KXzVTJ3kMjtfwtvS/l/rBbq1FUAJtGkT3pe6veYZaFQ==
62+
"@1stg/eslint-config@^5.1.0":
63+
version "5.1.0"
64+
resolved "https://registry.yarnpkg.com/@1stg/eslint-config/-/eslint-config-5.1.0.tgz#d5a0a4b9e92cc117a83e1d0e38cc89179bb8769c"
65+
integrity sha512-Iyj6WMq1JYtpFyj4/HwzpUpjESbGCu1uEUvxebnMeryFDGOY7nF+6oBTRNrkrTVaoA4cJFjhPUSQoYOiym4z3A==
6666
dependencies:
6767
"@angular-eslint/eslint-plugin" "^14.0.0"
6868
"@angular-eslint/eslint-plugin-template" "^14.0.0"
@@ -78,11 +78,14 @@
7878
eslint-config-standard-jsx "^11.0.0"
7979
eslint-config-standard-react "^11.0.1"
8080
eslint-formatter-friendly "^7.0.0"
81-
eslint-import-resolver-typescript "^3.1.1"
81+
eslint-import-resolver-typescript "^3.1.2"
82+
eslint-plugin-css "^0.6.0"
83+
eslint-plugin-es-x "^5.2.1"
8284
eslint-plugin-eslint-comments "^3.2.0"
8385
eslint-plugin-import "^2.26.0"
8486
eslint-plugin-jest "^26.5.3"
8587
eslint-plugin-jsdoc "^39.3.3"
88+
eslint-plugin-json-schema-validator "^3.0.25"
8689
eslint-plugin-jsonc "^2.3.0"
8790
eslint-plugin-markup "^0.9.0"
8891
eslint-plugin-mdx "^2.0.1"
@@ -91,21 +94,22 @@
9194
eslint-plugin-promise "^6.0.0"
9295
eslint-plugin-react "^7.30.1"
9396
eslint-plugin-react-hooks "^4.6.0"
97+
eslint-plugin-regexp "^1.7.0"
9498
eslint-plugin-simple-import-sort "^7.0.0"
9599
eslint-plugin-sonar "^0.8.0"
96100
eslint-plugin-sonarjs "^0.13.0"
97101
eslint-plugin-svelte "^2.0.0"
98102
eslint-plugin-toml "^0.3.1"
99-
eslint-plugin-unicorn "^42.0.0"
103+
eslint-plugin-unicorn "^43.0.0"
100104
eslint-plugin-vue "^9.1.1"
101105
eslint-plugin-yml "^1.0.0"
102106

103-
"@1stg/lib-config@^7.0.0":
104-
version "7.0.0"
105-
resolved "https://registry.yarnpkg.com/@1stg/lib-config/-/lib-config-7.0.0.tgz#52980d04ccefa74f5619fa6199d9eaeb3a103b2d"
106-
integrity sha512-ajd56c3QvqNeVIwClaqSZlQvMJgPZf4e05xHGYxMUOFBkIpmnpdfC/VCZcFG3oHEtDTk5716MSKZebsWSGJhvQ==
107+
"@1stg/lib-config@^7.1.0":
108+
version "7.1.0"
109+
resolved "https://registry.yarnpkg.com/@1stg/lib-config/-/lib-config-7.1.0.tgz#20ff3446703d8d59babd6ae7df0fae9bb90377bb"
110+
integrity sha512-C0ssjZD8NG8jQtCL5sZFQHPBiTbSwo46jcpcH09OK9b2i6Nj9jAo1W8qCW0AYlOZ6KSWb93ezO+RnIyUDY7pOg==
107111
dependencies:
108-
"@1stg/common-config" "^5.0.0"
112+
"@1stg/common-config" "^5.1.0"
109113
"@pkgr/rollup" "^3.1.2"
110114
jest "^28.1.2"
111115

@@ -448,7 +452,7 @@
448452
dependencies:
449453
"@babel/types" "^7.18.6"
450454

451-
"@babel/helper-validator-identifier@^7.15.7", "@babel/helper-validator-identifier@^7.16.7", "@babel/helper-validator-identifier@^7.18.6":
455+
"@babel/helper-validator-identifier@^7.16.7", "@babel/helper-validator-identifier@^7.18.6":
452456
version "7.18.6"
453457
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
454458
integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
@@ -2336,6 +2340,18 @@
23362340
resolved "https://registry.yarnpkg.com/@pkgr/umd-globals/-/umd-globals-0.8.0.tgz#1249860b007e02b0e60290c11aec86ee66d44798"
23372341
integrity sha512-5YnNlHQN78PQ/OpGNyndo980hZQrbODLDymnamtaSBcBgC0DsAfWLZgxUpmZuSpBWKWTQrfoavR8+NyUMZeOCQ==
23382342

2343+
"@pkgr/utils@2.1.0":
2344+
version "2.1.0"
2345+
resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.1.0.tgz#66a4be2df4fc8ae50d730666855f6a6df833a725"
2346+
integrity sha512-Va5LTLVoPIH8CrV170zXLSDtCJ6eG6uVXYwwsDYOOeec0MdkhvJzKaxvA+hGJRWFl5I4VBQBs5pwljaI4TG5OA==
2347+
dependencies:
2348+
cross-spawn "^7.0.3"
2349+
is-glob "^4.0.3"
2350+
open "^8.4.0"
2351+
picocolors "^1.0.0"
2352+
tiny-glob "^0.2.9"
2353+
tslib "^2.3.1"
2354+
23392355
"@pkgr/utils@^2.1.0", "@pkgr/utils@^2.2.0":
23402356
version "2.2.0"
23412357
resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.2.0.tgz#ccbf06cd010684b477dde40ec833a28f0c2136c4"
@@ -3054,7 +3070,7 @@ ajv@^6.10.0, ajv@^6.12.4:
30543070
json-schema-traverse "^0.4.1"
30553071
uri-js "^4.2.2"
30563072

3057-
ajv@^8.11.0:
3073+
ajv@^8.0.0, ajv@^8.11.0:
30583074
version "8.11.0"
30593075
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f"
30603076
integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==
@@ -3640,7 +3656,7 @@ chownr@^2.0.0:
36403656
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
36413657
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
36423658

3643-
ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.3.0:
3659+
ci-info@^3.1.0, ci-info@^3.2.0, ci-info@^3.3.2:
36443660
version "3.3.2"
36453661
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz#6d2967ffa407466481c6c90b6e16b3098f080128"
36463662
integrity sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==
@@ -3788,7 +3804,7 @@ commander@^9.2.0, commander@^9.3.0:
37883804
resolved "https://registry.yarnpkg.com/commander/-/commander-9.3.0.tgz#f619114a5a2d2054e0d9ff1b31d5ccf89255e26b"
37893805
integrity sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==
37903806

3791-
comment-parser@1.3.1:
3807+
comment-parser@1.3.1, comment-parser@^1.1.2:
37923808
version "1.3.1"
37933809
resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.3.1.tgz#3d7ea3adaf9345594aedee6563f422348f165c1b"
37943810
integrity sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==
@@ -4780,7 +4796,7 @@ eslint-import-resolver-node@^0.3.6:
47804796
debug "^3.2.7"
47814797
resolve "^1.20.0"
47824798

4783-
eslint-import-resolver-typescript@^3.1.1:
4799+
eslint-import-resolver-typescript@^3.1.2:
47844800
version "0.0.0"
47854801
uid ""
47864802

@@ -4812,6 +4828,24 @@ eslint-module-utils@^2.7.3:
48124828
debug "^3.2.7"
48134829
find-up "^2.1.0"
48144830

4831+
eslint-plugin-css@^0.6.0:
4832+
version "0.6.0"
4833+
resolved "https://registry.yarnpkg.com/eslint-plugin-css/-/eslint-plugin-css-0.6.0.tgz#eaf6526f4ce694e39b0dfedab977b78fc98bd50e"
4834+
integrity sha512-cQ+FsHNmVVSfMhiZnhhBvvdmzNF2oDvuY9oSpfGGMJctwDQiKtZ1rdALb0psHfobg8nBPwkgHg4i8JQhI8lXJQ==
4835+
dependencies:
4836+
colord "^2.9.1"
4837+
eslint-utils "^3.0.0"
4838+
known-css-properties "^0.24.0"
4839+
postcss-value-parser "^4.1.0"
4840+
4841+
eslint-plugin-es-x@^5.2.1:
4842+
version "5.2.1"
4843+
resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-5.2.1.tgz#b404677af94798dce3a40e172a7f707d1cf57976"
4844+
integrity sha512-NRNKsXjFwfgm11seplh8OiJ/2nbklD5ya72dbOOjURGZxpl8fzjRtQcErvl1UT306GtIoEEeG4OZqnwwsRABqg==
4845+
dependencies:
4846+
eslint-utils "^2.0.0 || ^3.0.0"
4847+
regexpp "^3.0.0"
4848+
48154849
eslint-plugin-es@^4.1.0:
48164850
version "4.1.0"
48174851
resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz#f0822f0c18a535a97c3e714e89f88586a7641ec9"
@@ -4867,6 +4901,23 @@ eslint-plugin-jsdoc@^39.3.3:
48674901
semver "^7.3.7"
48684902
spdx-expression-parse "^3.0.1"
48694903

4904+
eslint-plugin-json-schema-validator@^3.0.25:
4905+
version "3.0.25"
4906+
resolved "https://registry.yarnpkg.com/eslint-plugin-json-schema-validator/-/eslint-plugin-json-schema-validator-3.0.25.tgz#75f82a51510bc895cb72e3080a33abc96f00f750"
4907+
integrity sha512-Wsr2sKhgUv3fC6ZBN4JSrmhldlpi89KblTQtLBdRkmA0B1ZVG92NdsG5cQs3OSZ5LH7ZHnncYVEU8mYg8fCGag==
4908+
dependencies:
4909+
"@pkgr/utils" "2.1.0"
4910+
ajv "^8.0.0"
4911+
debug "^4.3.1"
4912+
eslint-utils "^3.0.0"
4913+
json-schema-migrate "^2.0.0"
4914+
jsonc-eslint-parser "^2.0.0"
4915+
minimatch "^5.0.0"
4916+
synckit "^0.7.1"
4917+
toml-eslint-parser "^0.4.0"
4918+
tunnel-agent "^0.6.0"
4919+
yaml-eslint-parser "^1.0.0"
4920+
48704921
eslint-plugin-jsonc@^2.3.0:
48714922
version "2.3.0"
48724923
resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.3.0.tgz#7afaae9b4f12bbc3b1d2193ee174d53ee3190c19"
@@ -4959,6 +5010,20 @@ eslint-plugin-react@^7.30.1:
49595010
semver "^6.3.0"
49605011
string.prototype.matchall "^4.0.7"
49615012

5013+
eslint-plugin-regexp@^1.7.0:
5014+
version "1.7.0"
5015+
resolved "https://registry.yarnpkg.com/eslint-plugin-regexp/-/eslint-plugin-regexp-1.7.0.tgz#19b3c98f4f4d5314242ecc8936346b1936de523e"
5016+
integrity sha512-nmhXqrEP+O+dz2z5MSkc41u/4fA8oakweoCUdfYwox7DBhzadEqZz8T+s6/UiY0NIU0kv+3UrzBfhPp4wUxbaA==
5017+
dependencies:
5018+
comment-parser "^1.1.2"
5019+
eslint-utils "^3.0.0"
5020+
grapheme-splitter "^1.0.4"
5021+
jsdoctypeparser "^9.0.0"
5022+
refa "^0.9.0"
5023+
regexp-ast-analysis "^0.5.1"
5024+
regexpp "^3.2.0"
5025+
scslre "^0.1.6"
5026+
49625027
eslint-plugin-simple-import-sort@^7.0.0:
49635028
version "7.0.0"
49645029
resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-7.0.0.tgz#a1dad262f46d2184a90095a60c66fef74727f0f8"
@@ -5003,13 +5068,13 @@ eslint-plugin-toml@^0.3.1:
50035068
lodash "^4.17.19"
50045069
toml-eslint-parser "^0.4.0"
50055070

5006-
eslint-plugin-unicorn@^42.0.0:
5007-
version "42.0.0"
5008-
resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-42.0.0.tgz#47d60c00c263ad743403b052db689e39acbacff1"
5009-
integrity sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==
5071+
eslint-plugin-unicorn@^43.0.0:
5072+
version "43.0.0"
5073+
resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-43.0.0.tgz#c26fdfd146036b3f7951fa0f8c9af2b81bd87096"
5074+
integrity sha512-Z/6HX8yry+zAjo4jHHTAbe1rfniox7qgmCReGBfTc/CVgotfScaMCc4dtSSTHlJ+7Yix5o6LPXzwwpuGGFricg==
50105075
dependencies:
5011-
"@babel/helper-validator-identifier" "^7.15.7"
5012-
ci-info "^3.3.0"
5076+
"@babel/helper-validator-identifier" "^7.18.6"
5077+
ci-info "^3.3.2"
50135078
clean-regexp "^1.0.0"
50145079
eslint-utils "^3.0.0"
50155080
esquery "^1.4.0"
@@ -5020,7 +5085,7 @@ eslint-plugin-unicorn@^42.0.0:
50205085
read-pkg-up "^7.0.1"
50215086
regexp-tree "^0.1.24"
50225087
safe-regex "^2.1.1"
5023-
semver "^7.3.5"
5088+
semver "^7.3.7"
50245089
strip-indent "^3.0.0"
50255090

50265091
eslint-plugin-utils@^0.3.0:
@@ -5079,7 +5144,7 @@ eslint-utils@^2.0.0:
50795144
dependencies:
50805145
eslint-visitor-keys "^1.1.0"
50815146

5082-
eslint-utils@^3.0.0:
5147+
"eslint-utils@^2.0.0 || ^3.0.0", eslint-utils@^3.0.0:
50835148
version "3.0.0"
50845149
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
50855150
integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
@@ -6791,6 +6856,11 @@ jsdoc-type-pratt-parser@~3.1.0:
67916856
resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-3.1.0.tgz#a4a56bdc6e82e5865ffd9febc5b1a227ff28e67e"
67926857
integrity sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==
67936858

6859+
jsdoctypeparser@^9.0.0:
6860+
version "9.0.0"
6861+
resolved "https://registry.yarnpkg.com/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz#8c97e2fb69315eb274b0f01377eaa5c940bd7b26"
6862+
integrity sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==
6863+
67946864
jsesc@^2.5.1:
67956865
version "2.5.2"
67966866
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
@@ -6811,6 +6881,13 @@ json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
68116881
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
68126882
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
68136883

6884+
json-schema-migrate@^2.0.0:
6885+
version "2.0.0"
6886+
resolved "https://registry.yarnpkg.com/json-schema-migrate/-/json-schema-migrate-2.0.0.tgz#335ef5218cd32fcc96c1ddce66c71ba586224496"
6887+
integrity sha512-r38SVTtojDRp4eD6WsCqiE0eNDt4v1WalBXb9cyZYw9ai5cGtBwzRNWjHzJl38w6TxFkXAIA7h+fyX3tnrAFhQ==
6888+
dependencies:
6889+
ajv "^8.0.0"
6890+
68146891
json-schema-traverse@^0.4.1:
68156892
version "0.4.1"
68166893
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
@@ -6843,7 +6920,7 @@ json5@^2.2.1:
68436920
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
68446921
integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
68456922

6846-
jsonc-eslint-parser@^2.0.4:
6923+
jsonc-eslint-parser@^2.0.0, jsonc-eslint-parser@^2.0.4:
68476924
version "2.1.0"
68486925
resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-2.1.0.tgz#4c126b530aa583d85308d0b3041ff81ce402bbb2"
68496926
integrity sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==
@@ -6919,6 +6996,11 @@ kleur@^4.0.3, kleur@^4.1.4:
69196996
resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
69206997
integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
69216998

6999+
known-css-properties@^0.24.0:
7000+
version "0.24.0"
7001+
resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.24.0.tgz#19aefd85003ae5698a5560d2b55135bf5432155c"
7002+
integrity sha512-RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==
7003+
69227004
known-css-properties@^0.25.0:
69237005
version "0.25.0"
69247006
resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.25.0.tgz#6ebc4d4b412f602e5cfbeb4086bd544e34c0a776"
@@ -7959,7 +8041,7 @@ min-indent@^1.0.0:
79598041
dependencies:
79608042
brace-expansion "^1.1.7"
79618043

7962-
minimatch@^5.0.1:
8044+
minimatch@^5.0.0, minimatch@^5.0.1:
79638045
version "5.1.0"
79648046
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7"
79658047
integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==
@@ -9178,6 +9260,14 @@ regexp-ast-analysis@^0.2.3:
91789260
refa "^0.9.0"
91799261
regexpp "^3.2.0"
91809262

9263+
regexp-ast-analysis@^0.5.1:
9264+
version "0.5.1"
9265+
resolved "https://registry.yarnpkg.com/regexp-ast-analysis/-/regexp-ast-analysis-0.5.1.tgz#f7c94e6199d6752f3430ae7a1d7a5978114197fb"
9266+
integrity sha512-Ca/g9gaTNuMewLuu+mBIq4vCrGRSO8AE9bP32NMQjJ/wBTdWq0g96qLkBb0NbGwEbp7S/q+NQF3o7veeuRfg0g==
9267+
dependencies:
9268+
refa "^0.9.0"
9269+
regexpp "^3.2.0"
9270+
91819271
regexp-to-ast@0.3.5:
91829272
version "0.3.5"
91839273
resolved "https://registry.yarnpkg.com/regexp-to-ast/-/regexp-to-ast-0.3.5.tgz#dedadd11bbb5f849df76b4e84b0b5335831c0473"
@@ -10311,7 +10401,7 @@ sade@^1.7.3:
1031110401
dependencies:
1031210402
mri "^1.1.0"
1031310403

10314-
safe-buffer@^5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
10404+
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1031510405
version "5.1.2"
1031610406
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1031710407
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
@@ -11057,6 +11147,13 @@ tty-table@^4.1.5:
1105711147
wcwidth "^1.0.1"
1105811148
yargs "^17.1.1"
1105911149

11150+
tunnel-agent@^0.6.0:
11151+
version "0.6.0"
11152+
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
11153+
integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==
11154+
dependencies:
11155+
safe-buffer "^5.0.1"
11156+
1106011157
type-check@^0.4.0, type-check@~0.4.0:
1106111158
version "0.4.0"
1106211159
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"

0 commit comments

Comments
 (0)
Please sign in to comment.