Skip to content

Commit 125e308

Browse files
authored
6.x is the latest release that supports our current node target
1 parent ae91138 commit 125e308

File tree

5 files changed

+126
-45
lines changed

5 files changed

+126
-45
lines changed

extensions/typescript-language-features/src/languageFeatures/completions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class MyCompletionItem extends vscode.CompletionItem {
188188
]
189189
};
190190
const response = await client.interruptGetErr(() => client.execute('completionEntryDetails', args, requestToken.token));
191-
if (response.type !== 'response' || !response.body || !response.body.length) {
191+
if (response.type !== 'response' || !response.body?.length) {
192192
return undefined;
193193
}
194194

@@ -766,7 +766,7 @@ class TypeScriptCompletionItemProvider implements vscode.CompletionItemProvider<
766766
dotAccessorContext = { range, text };
767767
}
768768
}
769-
isIncomplete = !!response.body.isIncomplete || (response as any).metadata && (response as any).metadata.isIncomplete;
769+
isIncomplete = !!response.body.isIncomplete || (response.metadata as any)?.isIncomplete;
770770
entries = response.body.entries;
771771
metadata = response.metadata;
772772

extensions/typescript-language-features/src/task/taskProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class TscTaskProvider extends Disposable implements vscode.TaskProvider {
5353

5454
public async provideTasks(token: vscode.CancellationToken): Promise<vscode.Task[]> {
5555
const folders = vscode.workspace.workspaceFolders;
56-
if ((this.autoDetect === AutoDetect.off) || !folders || !folders.length) {
56+
if ((this.autoDetect === AutoDetect.off) || !folders?.length) {
5757
return [];
5858
}
5959

extensions/typescript-language-features/src/utils/objects.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export function equals(one: any, other: any): boolean {
99
if (one === other) {
1010
return true;
1111
}
12+
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain
1213
if (one === null || one === undefined || other === null || other === undefined) {
1314
return false;
1415
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@
129129
"@types/winreg": "^1.2.30",
130130
"@types/yauzl": "^2.10.0",
131131
"@types/yazl": "^2.4.2",
132-
"@typescript-eslint/eslint-plugin": "^5.57.0",
132+
"@typescript-eslint/eslint-plugin": "^6.21.0",
133133
"@typescript-eslint/experimental-utils": "^5.57.0",
134-
"@typescript-eslint/parser": "^5.57.0",
134+
"@typescript-eslint/parser": "^6.21.0",
135135
"@vscode/gulp-electron": "^1.36.0",
136136
"@vscode/l10n-dev": "0.0.30",
137137
"@vscode/telemetry-extractor": "^1.10.2",

yarn.lock

Lines changed: 120 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@
416416
esquery "^1.5.0"
417417
jsdoc-type-pratt-parser "~4.0.0"
418418

419-
"@eslint-community/eslint-utils@^4.2.0":
419+
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
420420
version "4.4.0"
421421
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
422422
integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
@@ -428,6 +428,11 @@
428428
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.1.tgz#087cb8d9d757bb22e9c9946c9c0c2bf8806830f1"
429429
integrity sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==
430430

431+
"@eslint-community/regexpp@^4.5.1":
432+
version "4.10.0"
433+
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63"
434+
integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==
435+
431436
"@eslint/eslintrc@^2.0.1":
432437
version "2.0.1"
433438
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.1.tgz#7888fe7ec8f21bc26d646dbd2c11cd776e21192d"
@@ -1082,6 +1087,11 @@
10821087
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
10831088
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
10841089

1090+
"@types/json-schema@^7.0.12":
1091+
version "7.0.15"
1092+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
1093+
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
1094+
10851095
"@types/json-schema@^7.0.6":
10861096
version "7.0.6"
10871097
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0"
@@ -1179,6 +1189,11 @@
11791189
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a"
11801190
integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==
11811191

1192+
"@types/semver@^7.5.0":
1193+
version "7.5.8"
1194+
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e"
1195+
integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==
1196+
11821197
"@types/sinon-test@^2.4.2":
11831198
version "2.4.2"
11841199
resolved "https://registry.yarnpkg.com/@types/sinon-test/-/sinon-test-2.4.2.tgz#f55bdf5486e7b7a4dd7257789fcc2b7b125c4164"
@@ -1268,21 +1283,22 @@
12681283
dependencies:
12691284
"@types/node" "*"
12701285

1271-
"@typescript-eslint/eslint-plugin@^5.57.0":
1272-
version "5.57.0"
1273-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.57.0.tgz#52c8a7a4512f10e7249ca1e2e61f81c62c34365c"
1274-
integrity sha512-itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA==
1286+
"@typescript-eslint/eslint-plugin@^6.21.0":
1287+
version "6.21.0"
1288+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz#30830c1ca81fd5f3c2714e524c4303e0194f9cd3"
1289+
integrity sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==
12751290
dependencies:
1276-
"@eslint-community/regexpp" "^4.4.0"
1277-
"@typescript-eslint/scope-manager" "5.57.0"
1278-
"@typescript-eslint/type-utils" "5.57.0"
1279-
"@typescript-eslint/utils" "5.57.0"
1291+
"@eslint-community/regexpp" "^4.5.1"
1292+
"@typescript-eslint/scope-manager" "6.21.0"
1293+
"@typescript-eslint/type-utils" "6.21.0"
1294+
"@typescript-eslint/utils" "6.21.0"
1295+
"@typescript-eslint/visitor-keys" "6.21.0"
12801296
debug "^4.3.4"
1281-
grapheme-splitter "^1.0.4"
1282-
ignore "^5.2.0"
1283-
natural-compare-lite "^1.4.0"
1284-
semver "^7.3.7"
1285-
tsutils "^3.21.0"
1297+
graphemer "^1.4.0"
1298+
ignore "^5.2.4"
1299+
natural-compare "^1.4.0"
1300+
semver "^7.5.4"
1301+
ts-api-utils "^1.0.1"
12861302

12871303
"@typescript-eslint/experimental-utils@^5.57.0":
12881304
version "5.57.0"
@@ -1291,14 +1307,15 @@
12911307
dependencies:
12921308
"@typescript-eslint/utils" "5.57.0"
12931309

1294-
"@typescript-eslint/parser@^5.57.0":
1295-
version "5.57.0"
1296-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.57.0.tgz#f675bf2cd1a838949fd0de5683834417b757e4fa"
1297-
integrity sha512-orrduvpWYkgLCyAdNtR1QIWovcNZlEm6yL8nwH/eTxWLd8gsP+25pdLHYzL2QdkqrieaDwLpytHqycncv0woUQ==
1310+
"@typescript-eslint/parser@^6.21.0":
1311+
version "6.21.0"
1312+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b"
1313+
integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==
12981314
dependencies:
1299-
"@typescript-eslint/scope-manager" "5.57.0"
1300-
"@typescript-eslint/types" "5.57.0"
1301-
"@typescript-eslint/typescript-estree" "5.57.0"
1315+
"@typescript-eslint/scope-manager" "6.21.0"
1316+
"@typescript-eslint/types" "6.21.0"
1317+
"@typescript-eslint/typescript-estree" "6.21.0"
1318+
"@typescript-eslint/visitor-keys" "6.21.0"
13021319
debug "^4.3.4"
13031320

13041321
"@typescript-eslint/[email protected]":
@@ -1309,21 +1326,34 @@
13091326
"@typescript-eslint/types" "5.57.0"
13101327
"@typescript-eslint/visitor-keys" "5.57.0"
13111328

1312-
"@typescript-eslint/[email protected].0":
1313-
version "5.57.0"
1314-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.57.0.tgz#98e7531c4e927855d45bd362de922a619b4319f2"
1315-
integrity sha512-kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ==
1329+
"@typescript-eslint/[email protected].0":
1330+
version "6.21.0"
1331+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1"
1332+
integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==
13161333
dependencies:
1317-
"@typescript-eslint/typescript-estree" "5.57.0"
1318-
"@typescript-eslint/utils" "5.57.0"
1334+
"@typescript-eslint/types" "6.21.0"
1335+
"@typescript-eslint/visitor-keys" "6.21.0"
1336+
1337+
"@typescript-eslint/[email protected]":
1338+
version "6.21.0"
1339+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz#6473281cfed4dacabe8004e8521cee0bd9d4c01e"
1340+
integrity sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==
1341+
dependencies:
1342+
"@typescript-eslint/typescript-estree" "6.21.0"
1343+
"@typescript-eslint/utils" "6.21.0"
13191344
debug "^4.3.4"
1320-
tsutils "^3.21.0"
1345+
ts-api-utils "^1.0.1"
13211346

13221347
"@typescript-eslint/[email protected]":
13231348
version "5.57.0"
13241349
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.57.0.tgz#727bfa2b64c73a4376264379cf1f447998eaa132"
13251350
integrity sha512-mxsod+aZRSyLT+jiqHw1KK6xrANm19/+VFALVFP5qa/aiJnlP38qpyaTd0fEKhWvQk6YeNZ5LGwI1pDpBRBhtQ==
13261351

1352+
"@typescript-eslint/[email protected]":
1353+
version "6.21.0"
1354+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d"
1355+
integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==
1356+
13271357
"@typescript-eslint/[email protected]":
13281358
version "5.57.0"
13291359
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.0.tgz#ebcd0ee3e1d6230e888d88cddf654252d41e2e40"
@@ -1337,6 +1367,20 @@
13371367
semver "^7.3.7"
13381368
tsutils "^3.21.0"
13391369

1370+
"@typescript-eslint/[email protected]":
1371+
version "6.21.0"
1372+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46"
1373+
integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==
1374+
dependencies:
1375+
"@typescript-eslint/types" "6.21.0"
1376+
"@typescript-eslint/visitor-keys" "6.21.0"
1377+
debug "^4.3.4"
1378+
globby "^11.1.0"
1379+
is-glob "^4.0.3"
1380+
minimatch "9.0.3"
1381+
semver "^7.5.4"
1382+
ts-api-utils "^1.0.1"
1383+
13401384
"@typescript-eslint/[email protected]":
13411385
version "5.57.0"
13421386
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.57.0.tgz#eab8f6563a2ac31f60f3e7024b91bf75f43ecef6"
@@ -1351,6 +1395,19 @@
13511395
eslint-scope "^5.1.1"
13521396
semver "^7.3.7"
13531397

1398+
"@typescript-eslint/[email protected]":
1399+
version "6.21.0"
1400+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.21.0.tgz#4714e7a6b39e773c1c8e97ec587f520840cd8134"
1401+
integrity sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==
1402+
dependencies:
1403+
"@eslint-community/eslint-utils" "^4.4.0"
1404+
"@types/json-schema" "^7.0.12"
1405+
"@types/semver" "^7.5.0"
1406+
"@typescript-eslint/scope-manager" "6.21.0"
1407+
"@typescript-eslint/types" "6.21.0"
1408+
"@typescript-eslint/typescript-estree" "6.21.0"
1409+
semver "^7.5.4"
1410+
13541411
"@typescript-eslint/[email protected]":
13551412
version "5.57.0"
13561413
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.0.tgz#e2b2f4174aff1d15eef887ce3d019ecc2d7a8ac1"
@@ -1359,6 +1416,14 @@
13591416
"@typescript-eslint/types" "5.57.0"
13601417
eslint-visitor-keys "^3.3.0"
13611418

1419+
"@typescript-eslint/[email protected]":
1420+
version "6.21.0"
1421+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47"
1422+
integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==
1423+
dependencies:
1424+
"@typescript-eslint/types" "6.21.0"
1425+
eslint-visitor-keys "^3.4.1"
1426+
13621427
"@vscode/gulp-electron@^1.36.0":
13631428
version "1.36.0"
13641429
resolved "https://registry.yarnpkg.com/@vscode/gulp-electron/-/gulp-electron-1.36.0.tgz#b2895c4bafaa0cf2b13042aa654e9fdd1f3a90cd"
@@ -3814,6 +3879,11 @@ eslint-visitor-keys@^3.3.0:
38143879
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
38153880
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
38163881

3882+
eslint-visitor-keys@^3.4.1:
3883+
version "3.4.3"
3884+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
3885+
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
3886+
38173887
38183888
version "8.36.0"
38193889
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.36.0.tgz#1bd72202200a5492f91803b113fb8a83b11285cf"
@@ -4827,6 +4897,11 @@ grapheme-splitter@^1.0.4:
48274897
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
48284898
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
48294899

4900+
graphemer@^1.4.0:
4901+
version "1.4.0"
4902+
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
4903+
integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
4904+
48304905
gulp-azure-storage@^0.12.1:
48314906
version "0.12.1"
48324907
resolved "https://registry.yarnpkg.com/gulp-azure-storage/-/gulp-azure-storage-0.12.1.tgz#be2be1268af7dea6fdf56045b3eb3f090335de4a"
@@ -5288,6 +5363,11 @@ ignore@^5.2.0:
52885363
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
52895364
integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
52905365

5366+
ignore@^5.2.4:
5367+
version "5.3.1"
5368+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
5369+
integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
5370+
52915371
immediate@~3.0.5:
52925372
version "3.0.6"
52935373
resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"
@@ -6600,20 +6680,20 @@ [email protected]:
66006680
dependencies:
66016681
brace-expansion "^2.0.1"
66026682

6683+
[email protected], minimatch@^9.0.1, minimatch@^9.0.3:
6684+
version "9.0.3"
6685+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
6686+
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
6687+
dependencies:
6688+
brace-expansion "^2.0.1"
6689+
66036690
minimatch@^7.4.3:
66046691
version "7.4.6"
66056692
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.6.tgz#845d6f254d8f4a5e4fd6baf44d5f10c8448365fb"
66066693
integrity sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==
66076694
dependencies:
66086695
brace-expansion "^2.0.1"
66096696

6610-
minimatch@^9.0.1, minimatch@^9.0.3:
6611-
version "9.0.3"
6612-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
6613-
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
6614-
dependencies:
6615-
brace-expansion "^2.0.1"
6616-
66176697
minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6:
66186698
version "1.2.7"
66196699
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
@@ -6823,11 +6903,6 @@ native-watchdog@^1.4.1:
68236903
resolved "https://registry.yarnpkg.com/native-watchdog/-/native-watchdog-1.4.2.tgz#cf9f913157ee992723aa372b6137293c663be9b7"
68246904
integrity sha512-iT3Uj6FFdrW5vHbQ/ybiznLus9oiUoMJ8A8nyugXv9rV3EBhIodmGs+mztrwQyyBc+PB5/CrskAH/WxaUVRRSQ==
68256905

6826-
natural-compare-lite@^1.4.0:
6827-
version "1.4.0"
6828-
resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
6829-
integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==
6830-
68316906
natural-compare@^1.4.0:
68326907
version "1.4.0"
68336908
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
@@ -9455,6 +9530,11 @@ tree-kill@^1.2.2:
94559530
resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
94569531
integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
94579532

9533+
ts-api-utils@^1.0.1:
9534+
version "1.3.0"
9535+
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
9536+
integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==
9537+
94589538
ts-loader@^9.4.2:
94599539
version "9.4.2"
94609540
resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.4.2.tgz#80a45eee92dd5170b900b3d00abcfa14949aeb78"

0 commit comments

Comments
 (0)