Skip to content

Commit 8562c17

Browse files
chore(tools): eslint update requires promises.all (#28617)
The update on eslint is causing the following error: ``` @aws-cdk/spec2cdk: 165:3 error An array of Promises may be unintentional. Consider handling the promises' fulfillment or rejection with Promise.all or similar, or explicitly marking the expression as ignored with the `void` operator @typescript-eslint/no-floating-promises ``` This PR has been separated out from [28434](#28434) because there are other failures. I am splitting these out to make clear which code is fixing which issue. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 050a305 commit 8562c17

File tree

10 files changed

+96
-85
lines changed

10 files changed

+96
-85
lines changed

packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l
207207

208208
----------------
209209

210-
** @jsii/check-node@1.92.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.92.0 | Apache-2.0
210+
** @jsii/check-node@1.93.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.93.0 | Apache-2.0
211211
jsii
212212
Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
213213

@@ -471,7 +471,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
471471

472472
----------------
473473

474-
** aws-sdk@2.1498.0 - https://www.npmjs.com/package/aws-sdk/v/2.1498.0 | Apache-2.0
474+
** aws-sdk@2.1517.0 - https://www.npmjs.com/package/aws-sdk/v/2.1517.0 | Apache-2.0
475475
AWS SDK for JavaScript
476476
Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
477477

@@ -668,7 +668,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
668668

669669
----------------
670670

671-
** cdk-from-cfn@0.84.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.84.0 | MIT OR Apache-2.0
671+
** cdk-from-cfn@0.91.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.91.0 | MIT OR Apache-2.0
672672

673673
----------------
674674

packages/awslint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
"@types/fs-extra": "^9.0.13",
3232
"@types/jest": "^29.5.11",
3333
"@types/yargs": "^15.0.19",
34-
"@typescript-eslint/eslint-plugin": "^6.14.0",
35-
"@typescript-eslint/parser": "^6.14.0",
34+
"@typescript-eslint/eslint-plugin": "^6.18.0",
35+
"@typescript-eslint/parser": "^6.18.0",
3636
"eslint": "^7.32.0",
3737
"eslint-import-resolver-node": "^0.3.9",
3838
"eslint-import-resolver-typescript": "^2.7.1",
39-
"eslint-plugin-import": "^2.29.0",
39+
"eslint-plugin-import": "^2.29.1",
4040
"eslint-plugin-jest": "^24.7.0",
4141
"jest": "^29.7.0",
4242
"typescript": "~5.1.6"

tools/@aws-cdk/cdk-build-tools/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747
"@aws-cdk/eslint-plugin": "0.0.0",
4848
"@aws-cdk/yarn-cling": "0.0.0",
4949
"@aws-cdk/node-bundle": "0.0.0",
50-
"@typescript-eslint/eslint-plugin": "^6.14.0",
51-
"@typescript-eslint/parser": "^6.14.0",
50+
"@typescript-eslint/eslint-plugin": "^6.18.0",
51+
"@typescript-eslint/parser": "^6.18.0",
5252
"awslint": "0.0.0",
5353
"chalk": "^4",
5454
"eslint": "^7.32.0",
5555
"eslint-import-resolver-node": "^0.3.9",
5656
"eslint-import-resolver-typescript": "^2.7.1",
57-
"eslint-plugin-import": "^2.29.0",
57+
"eslint-plugin-import": "^2.29.1",
5858
"eslint-plugin-jest": "^24.7.0",
5959
"fs-extra": "^9.1.0",
6060
"glob": "^7.2.3",
@@ -86,4 +86,4 @@
8686
"ubergen": {
8787
"exclude": true
8888
}
89-
}
89+
}

tools/@aws-cdk/eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"typescript": "~5.1.6"
2323
},
2424
"dependencies": {
25-
"@typescript-eslint/parser": "^6.14.0",
25+
"@typescript-eslint/parser": "^6.18.0",
2626
"eslint": "^7.32.0",
2727
"fs-extra": "^9.1.0"
2828
},

tools/@aws-cdk/lazify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
},
3131
"main": "lib/index.js",
3232
"license": "Apache-2.0"
33-
}
33+
}

tools/@aws-cdk/node-bundle/package.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/@aws-cdk/pkglint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
"@types/jest": "^29.5.11",
4444
"@types/semver": "^7.5.6",
4545
"@types/yargs": "^15.0.19",
46-
"@typescript-eslint/eslint-plugin": "^6.14.0",
47-
"@typescript-eslint/parser": "^6.14.0",
46+
"@typescript-eslint/eslint-plugin": "^6.18.0",
47+
"@typescript-eslint/parser": "^6.18.0",
4848
"eslint": "^7.32.0",
4949
"eslint-import-resolver-node": "^0.3.9",
5050
"eslint-import-resolver-typescript": "^2.7.1",
51-
"eslint-plugin-import": "^2.29.0",
51+
"eslint-plugin-import": "^2.29.1",
5252
"eslint-plugin-jest": "^24.7.0",
5353
"jest": "^29.7.0",
5454
"typescript": "~5.1.6"

tools/@aws-cdk/prlint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eslint": "^7.32.0",
3030
"eslint-import-resolver-node": "^0.3.9",
3131
"eslint-import-resolver-typescript": "^2.7.1",
32-
"eslint-plugin-import": "^2.29.0",
32+
"eslint-plugin-import": "^2.29.1",
3333
"eslint-plugin-jest": "^24.7.0"
3434
},
3535
"jest": {

tools/@aws-cdk/spec2cdk/lib/cfn2ts/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ export async function generateAll(
162162
},
163163
);
164164

165-
Object.keys(moduleMap).map(async (moduleName) => {
165+
await Promise.all(Object.keys(moduleMap).map(async (moduleName) => {
166166
// Add generated resources and files to module in map
167167
moduleMap[moduleName].resources = generated.modules[moduleName].map((m) => m.resources).reduce(mergeObjects, {});
168168
moduleMap[moduleName].files = generated.modules[moduleName].flatMap((m) => m.outputFiles);
169-
});
169+
}));
170170

171171
return moduleMap;
172172
}

yarn.lock

Lines changed: 74 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -5182,16 +5182,16 @@
51825182
resolved "https://registry.npmjs.org/@types/yarnpkg__lockfile/-/yarnpkg__lockfile-1.1.9.tgz#b3c8e8d66dc8ce79827f422a660a557cda9ded14"
51835183
integrity sha512-GD4Fk15UoP5NLCNor51YdfL9MSdldKCqOC9EssrRw3HVfar9wUZ5y8Lfnp+qVD6hIinLr8ygklDYnmlnlQo12Q==
51845184

5185-
"@typescript-eslint/eslint-plugin@^6.14.0":
5186-
version "6.14.0"
5187-
resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.14.0.tgz#fc1ab5f23618ba590c87e8226ff07a760be3dd7b"
5188-
integrity sha512-1ZJBykBCXaSHG94vMMKmiHoL0MhNHKSVlcHVYZNw+BKxufhqQVTOawNpwwI1P5nIFZ/4jLVop0mcY6mJJDFNaw==
5185+
"@typescript-eslint/eslint-plugin@^6.18.0":
5186+
version "6.18.0"
5187+
resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.18.0.tgz#94b86f3c25b468c714a04bd490017ecec2fd3746"
5188+
integrity sha512-3lqEvQUdCozi6d1mddWqd+kf8KxmGq2Plzx36BlkjuQe3rSTm/O98cLf0A4uDO+a5N1KD2SeEEl6fW97YHY+6w==
51895189
dependencies:
51905190
"@eslint-community/regexpp" "^4.5.1"
5191-
"@typescript-eslint/scope-manager" "6.14.0"
5192-
"@typescript-eslint/type-utils" "6.14.0"
5193-
"@typescript-eslint/utils" "6.14.0"
5194-
"@typescript-eslint/visitor-keys" "6.14.0"
5191+
"@typescript-eslint/scope-manager" "6.18.0"
5192+
"@typescript-eslint/type-utils" "6.18.0"
5193+
"@typescript-eslint/utils" "6.18.0"
5194+
"@typescript-eslint/visitor-keys" "6.18.0"
51955195
debug "^4.3.4"
51965196
graphemer "^1.4.0"
51975197
ignore "^5.2.4"
@@ -5211,15 +5211,15 @@
52115211
eslint-scope "^5.1.1"
52125212
eslint-utils "^3.0.0"
52135213

5214-
"@typescript-eslint/parser@^6.14.0":
5215-
version "6.14.0"
5216-
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.14.0.tgz#a2d6a732e0d2b95c73f6a26ae7362877cc1b4212"
5217-
integrity sha512-QjToC14CKacd4Pa7JK4GeB/vHmWFJckec49FR4hmIRf97+KXole0T97xxu9IFiPxVQ1DBWrQ5wreLwAGwWAVQA==
5214+
"@typescript-eslint/parser@^6.18.0":
5215+
version "6.18.0"
5216+
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.18.0.tgz#d494161d64832e869f0a6acc6000a2cdff858383"
5217+
integrity sha512-v6uR68SFvqhNQT41frCMCQpsP+5vySy6IdgjlzUWoo7ALCnpaWYcz/Ij2k4L8cEsL0wkvOviCMpjmtRtHNOKzA==
52185218
dependencies:
5219-
"@typescript-eslint/scope-manager" "6.14.0"
5220-
"@typescript-eslint/types" "6.14.0"
5221-
"@typescript-eslint/typescript-estree" "6.14.0"
5222-
"@typescript-eslint/visitor-keys" "6.14.0"
5219+
"@typescript-eslint/scope-manager" "6.18.0"
5220+
"@typescript-eslint/types" "6.18.0"
5221+
"@typescript-eslint/typescript-estree" "6.18.0"
5222+
"@typescript-eslint/visitor-keys" "6.18.0"
52235223
debug "^4.3.4"
52245224

52255225
"@typescript-eslint/[email protected]":
@@ -5230,21 +5230,21 @@
52305230
"@typescript-eslint/types" "4.33.0"
52315231
"@typescript-eslint/visitor-keys" "4.33.0"
52325232

5233-
"@typescript-eslint/scope-manager@6.14.0":
5234-
version "6.14.0"
5235-
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.14.0.tgz#53d24363fdb5ee0d1d8cda4ed5e5321272ab3d48"
5236-
integrity sha512-VT7CFWHbZipPncAZtuALr9y3EuzY1b1t1AEkIq2bTXUPKw+pHoXflGNG5L+Gv6nKul1cz1VH8fz16IThIU0tdg==
5233+
"@typescript-eslint/scope-manager@6.18.0":
5234+
version "6.18.0"
5235+
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.18.0.tgz#24ca6fc1f4a2afa71122dcfca9282878687d9997"
5236+
integrity sha512-o/UoDT2NgOJ2VfHpfr+KBY2ErWvCySNUIX/X7O9g8Zzt/tXdpfEU43qbNk8LVuWUT2E0ptzTWXh79i74PP0twA==
52375237
dependencies:
5238-
"@typescript-eslint/types" "6.14.0"
5239-
"@typescript-eslint/visitor-keys" "6.14.0"
5238+
"@typescript-eslint/types" "6.18.0"
5239+
"@typescript-eslint/visitor-keys" "6.18.0"
52405240

5241-
"@typescript-eslint/type-utils@6.14.0":
5242-
version "6.14.0"
5243-
resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.14.0.tgz#ac9cb5ba0615c837f1a6b172feeb273d36e4f8af"
5244-
integrity sha512-x6OC9Q7HfYKqjnuNu5a7kffIYs3No30isapRBJl1iCHLitD8O0lFbRcVGiOcuyN837fqXzPZ1NS10maQzZMKqw==
5241+
"@typescript-eslint/type-utils@6.18.0":
5242+
version "6.18.0"
5243+
resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.18.0.tgz#a492da599da5c38c70aa9ff9bfb473961b8ae663"
5244+
integrity sha512-ZeMtrXnGmTcHciJN1+u2CigWEEXgy1ufoxtWcHORt5kGvpjjIlK9MUhzHm4RM8iVy6dqSaZA/6PVkX6+r+ChjQ==
52455245
dependencies:
5246-
"@typescript-eslint/typescript-estree" "6.14.0"
5247-
"@typescript-eslint/utils" "6.14.0"
5246+
"@typescript-eslint/typescript-estree" "6.18.0"
5247+
"@typescript-eslint/utils" "6.18.0"
52485248
debug "^4.3.4"
52495249
ts-api-utils "^1.0.1"
52505250

@@ -5253,10 +5253,10 @@
52535253
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72"
52545254
integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==
52555255

5256-
"@typescript-eslint/types@6.14.0":
5257-
version "6.14.0"
5258-
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.14.0.tgz#935307f7a931016b7a5eb25d494ea3e1f613e929"
5259-
integrity sha512-uty9H2K4Xs8E47z3SnXEPRNDfsis8JO27amp2GNCnzGETEW3yTqEIVg5+AI7U276oGF/tw6ZA+UesxeQ104ceA==
5256+
"@typescript-eslint/types@6.18.0":
5257+
version "6.18.0"
5258+
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.18.0.tgz#ffce610a1540c17cf7d8ecf2bb34b8b0e2e77101"
5259+
integrity sha512-/RFVIccwkwSdW/1zeMx3hADShWbgBxBnV/qSrex6607isYjj05t36P6LyONgqdUrNLl5TYU8NIKdHUYpFvExkA==
52605260

52615261
"@typescript-eslint/[email protected]", "@typescript-eslint/typescript-estree@^4.33.0":
52625262
version "4.33.0"
@@ -5271,30 +5271,31 @@
52715271
semver "^7.3.5"
52725272
tsutils "^3.21.0"
52735273

5274-
"@typescript-eslint/typescript-estree@6.14.0":
5275-
version "6.14.0"
5276-
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.14.0.tgz#90c7ddd45cd22139adf3d4577580d04c9189ac13"
5277-
integrity sha512-yPkaLwK0yH2mZKFE/bXkPAkkFgOv15GJAUzgUVonAbv0Hr4PK/N2yaA/4XQbTZQdygiDkpt5DkxPELqHguNvyw==
5274+
"@typescript-eslint/typescript-estree@6.18.0":
5275+
version "6.18.0"
5276+
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.18.0.tgz#1c357c3ca435c3cfa2af6b9daf45ca0bc2bb059a"
5277+
integrity sha512-klNvl+Ql4NsBNGB4W9TZ2Od03lm7aGvTbs0wYaFYsplVPhr+oeXjlPZCDI4U9jgJIDK38W1FKhacCFzCC+nbIg==
52785278
dependencies:
5279-
"@typescript-eslint/types" "6.14.0"
5280-
"@typescript-eslint/visitor-keys" "6.14.0"
5279+
"@typescript-eslint/types" "6.18.0"
5280+
"@typescript-eslint/visitor-keys" "6.18.0"
52815281
debug "^4.3.4"
52825282
globby "^11.1.0"
52835283
is-glob "^4.0.3"
5284+
minimatch "9.0.3"
52845285
semver "^7.5.4"
52855286
ts-api-utils "^1.0.1"
52865287

5287-
"@typescript-eslint/utils@6.14.0":
5288-
version "6.14.0"
5289-
resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.14.0.tgz#856a9e274367d99ffbd39c48128b93a86c4261e3"
5290-
integrity sha512-XwRTnbvRr7Ey9a1NT6jqdKX8y/atWG+8fAIu3z73HSP8h06i3r/ClMhmaF/RGWGW1tHJEwij1uEg2GbEmPYvYg==
5288+
"@typescript-eslint/utils@6.18.0":
5289+
version "6.18.0"
5290+
resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.18.0.tgz#4d07c9c08f84b9939a1aca7aef98c8f378936142"
5291+
integrity sha512-wiKKCbUeDPGaYEYQh1S580dGxJ/V9HI7K5sbGAVklyf+o5g3O+adnS4UNJajplF4e7z2q0uVBaTdT/yLb4XAVA==
52915292
dependencies:
52925293
"@eslint-community/eslint-utils" "^4.4.0"
52935294
"@types/json-schema" "^7.0.12"
52945295
"@types/semver" "^7.5.0"
5295-
"@typescript-eslint/scope-manager" "6.14.0"
5296-
"@typescript-eslint/types" "6.14.0"
5297-
"@typescript-eslint/typescript-estree" "6.14.0"
5296+
"@typescript-eslint/scope-manager" "6.18.0"
5297+
"@typescript-eslint/types" "6.18.0"
5298+
"@typescript-eslint/typescript-estree" "6.18.0"
52985299
semver "^7.5.4"
52995300

53005301
"@typescript-eslint/[email protected]":
@@ -5305,12 +5306,12 @@
53055306
"@typescript-eslint/types" "4.33.0"
53065307
eslint-visitor-keys "^2.0.0"
53075308

5308-
"@typescript-eslint/visitor-keys@6.14.0":
5309-
version "6.14.0"
5310-
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.14.0.tgz#1d1d486581819287de824a56c22f32543561138e"
5311-
integrity sha512-fB5cw6GRhJUz03MrROVuj5Zm/Q+XWlVdIsFj+Zb1Hvqouc8t+XP2H5y53QYU/MGtd2dPg6/vJJlhoX3xc2ehfw==
5309+
"@typescript-eslint/visitor-keys@6.18.0":
5310+
version "6.18.0"
5311+
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.18.0.tgz#3c8733737786fa6c78a347b4fa306ae7155b560f"
5312+
integrity sha512-1wetAlSZpewRDb2h9p/Q8kRjdGuqdTAQbkJIOUMLug2LBLG+QOjiWoSj6/3B/hA9/tVTFFdtiKvAYoYnSRW/RA==
53125313
dependencies:
5313-
"@typescript-eslint/types" "6.14.0"
5314+
"@typescript-eslint/types" "6.18.0"
53145315
eslint-visitor-keys "^3.4.1"
53155316

53165317
"@ungap/structured-clone@^1.2.0":
@@ -7795,10 +7796,10 @@ eslint-module-utils@^2.8.0:
77957796
dependencies:
77967797
debug "^3.2.7"
77977798

7798-
eslint-plugin-import@^2.29.0:
7799-
version "2.29.0"
7800-
resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz#8133232e4329ee344f2f612885ac3073b0b7e155"
7801-
integrity sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==
7799+
eslint-plugin-import@^2.29.1:
7800+
version "2.29.1"
7801+
resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643"
7802+
integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==
78027803
dependencies:
78037804
array-includes "^3.1.7"
78047805
array.prototype.findlastindex "^1.2.3"
@@ -7816,7 +7817,7 @@ eslint-plugin-import@^2.29.0:
78167817
object.groupby "^1.0.1"
78177818
object.values "^1.1.7"
78187819
semver "^6.3.1"
7819-
tsconfig-paths "^3.14.2"
7820+
tsconfig-paths "^3.15.0"
78207821

78217822
eslint-plugin-jest@^24.7.0:
78227823
version "24.7.0"
@@ -11217,6 +11218,13 @@ [email protected]:
1121711218
dependencies:
1121811219
brace-expansion "^1.1.7"
1121911220

11221+
[email protected], minimatch@^9.0.0, minimatch@^9.0.1, minimatch@^9.0.3, minimatch@~9.0.3:
11222+
version "9.0.3"
11223+
resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
11224+
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
11225+
dependencies:
11226+
brace-expansion "^2.0.1"
11227+
1122011228
minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
1122111229
version "3.1.2"
1122211230
resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
@@ -11238,13 +11246,6 @@ minimatch@^8.0.2:
1123811246
dependencies:
1123911247
brace-expansion "^2.0.1"
1124011248

11241-
minimatch@^9.0.0, minimatch@^9.0.1, minimatch@^9.0.3, minimatch@~9.0.3:
11242-
version "9.0.3"
11243-
resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
11244-
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
11245-
dependencies:
11246-
brace-expansion "^2.0.1"
11247-
1124811249
1124911250
version "4.1.0"
1125011251
resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
@@ -14323,7 +14324,7 @@ ts-node@^10.9.1, ts-node@^10.9.2:
1432314324
v8-compile-cache-lib "^3.0.1"
1432414325
yn "3.1.1"
1432514326

14326-
tsconfig-paths@^3.10.1, tsconfig-paths@^3.14.1, tsconfig-paths@^3.14.2:
14327+
tsconfig-paths@^3.10.1, tsconfig-paths@^3.14.1:
1432714328
version "3.14.2"
1432814329
resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
1432914330
integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==
@@ -14333,6 +14334,16 @@ tsconfig-paths@^3.10.1, tsconfig-paths@^3.14.1, tsconfig-paths@^3.14.2:
1433314334
minimist "^1.2.6"
1433414335
strip-bom "^3.0.0"
1433514336

14337+
tsconfig-paths@^3.15.0:
14338+
version "3.15.0"
14339+
resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
14340+
integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
14341+
dependencies:
14342+
"@types/json5" "^0.0.29"
14343+
json5 "^1.0.2"
14344+
minimist "^1.2.6"
14345+
strip-bom "^3.0.0"
14346+
1433614347
tsconfig-paths@^4.1.2:
1433714348
version "4.2.0"
1433814349
resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c"

0 commit comments

Comments
 (0)