Skip to content

Commit 99e8d4a

Browse files
authoredJun 11, 2022
feat: update typescript-eslint packages to v5.27.1 (#1022)
1 parent d095381 commit 99e8d4a

10 files changed

+102
-87
lines changed
 

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
"@types/jest": "27.4.1",
6868
"@types/node": "16.11.39",
6969
"@types/prettier": "2.6.3",
70-
"@typescript-eslint/eslint-plugin": "5.17.0",
71-
"@typescript-eslint/parser": "5.17.0",
70+
"@typescript-eslint/eslint-plugin": "5.27.1",
71+
"@typescript-eslint/parser": "5.27.1",
7272
"eslint": "8.17.0",
7373
"eslint-config-prettier": "8.5.0",
7474
"execa": "5.1.1",

‎packages/eslint-plugin-template/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"dependencies": {
2020
"@angular-eslint/bundled-angular-compiler": "13.3.0",
21-
"@typescript-eslint/experimental-utils": "5.17.0",
21+
"@typescript-eslint/experimental-utils": "5.27.1",
2222
"aria-query": "^4.2.2",
2323
"axobject-query": "^2.2.0"
2424
},

‎packages/eslint-plugin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"dependencies": {
2020
"@angular-eslint/utils": "13.3.0",
21-
"@typescript-eslint/experimental-utils": "5.17.0"
21+
"@typescript-eslint/experimental-utils": "5.27.1"
2222
},
2323
"peerDependencies": {
2424
"eslint": "^7.0.0 || ^8.0.0",

‎packages/eslint-plugin/src/rules/relative-url-prefix.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ export default createESLintRule<Options, MessageIds>({
5151
},
5252
});
5353

54-
function isUrlInvalid(node: TSESTree.Property | TSESTree.Property['value']) {
54+
function isUrlInvalid(
55+
node: TSESTree.Property['value'] | TSESTree.SpreadElement,
56+
) {
5557
return (
5658
!ASTUtils.isStringLiteral(node) ||
5759
!RELATIVE_URL_PREFIX_MATCHER.test(node.value)

‎packages/integration-tests/tests/__snapshots__/v13-new-workspace-create-application-false-ng-add-then-project.test.ts.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Object {
1212
"@angular/compiler-cli": "~13.3.0",
1313
"@types/jasmine": "~3.10.0",
1414
"@types/node": "^12.11.1",
15-
"@typescript-eslint/eslint-plugin": "5.17.0",
16-
"@typescript-eslint/parser": "5.17.0",
15+
"@typescript-eslint/eslint-plugin": "5.27.1",
16+
"@typescript-eslint/parser": "5.27.1",
1717
"eslint": "^8.17.0",
1818
"jasmine-core": "~4.0.0",
1919
"karma": "~6.3.0",

‎packages/integration-tests/tests/__snapshots__/v13-new-workspace-create-application-false-project-then-ng-add.test.ts.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Object {
1212
"@angular/compiler-cli": "~13.3.0",
1313
"@types/jasmine": "~3.10.0",
1414
"@types/node": "^12.11.1",
15-
"@typescript-eslint/eslint-plugin": "5.17.0",
16-
"@typescript-eslint/parser": "5.17.0",
15+
"@typescript-eslint/eslint-plugin": "5.27.1",
16+
"@typescript-eslint/parser": "5.27.1",
1717
"eslint": "^8.17.0",
1818
"jasmine-core": "~4.0.0",
1919
"karma": "~6.3.0",

‎packages/integration-tests/tests/__snapshots__/v13-new-workspace.test.ts.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Object {
1212
"@angular/compiler-cli": "~13.3.0",
1313
"@types/jasmine": "~3.10.0",
1414
"@types/node": "^12.11.1",
15-
"@typescript-eslint/eslint-plugin": "5.17.0",
16-
"@typescript-eslint/parser": "5.17.0",
15+
"@typescript-eslint/eslint-plugin": "5.27.1",
16+
"@typescript-eslint/parser": "5.27.1",
1717
"eslint": "^8.17.0",
1818
"jasmine-core": "~4.0.0",
1919
"karma": "~6.3.0",

‎packages/schematics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"@types/tmp": "0.2.3",
44-
"@typescript-eslint/experimental-utils": "5.17.0",
44+
"@typescript-eslint/experimental-utils": "5.27.1",
4545
"eslint": "8.17.0",
4646
"tslint-to-eslint-config": "2.4.0"
4747
},

‎packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"dependencies": {
1818
"@angular-eslint/bundled-angular-compiler": "13.3.0",
19-
"@typescript-eslint/experimental-utils": "5.17.0"
19+
"@typescript-eslint/experimental-utils": "5.27.1"
2020
},
2121
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
2222
}

‎yarn.lock

+87-74
Original file line numberDiff line numberDiff line change
@@ -3678,92 +3678,92 @@
36783678
dependencies:
36793679
"@types/yargs-parser" "*"
36803680

3681-
"@typescript-eslint/eslint-plugin@5.17.0":
3682-
version "5.17.0"
3683-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.17.0.tgz#704eb4e75039000531255672bf1c85ee85cf1d67"
3684-
integrity sha512-qVstvQilEd89HJk3qcbKt/zZrfBZ+9h2ynpAGlWjWiizA7m/MtLT9RoX6gjtpE500vfIg8jogAkDzdCxbsFASQ==
3685-
dependencies:
3686-
"@typescript-eslint/scope-manager" "5.17.0"
3687-
"@typescript-eslint/type-utils" "5.17.0"
3688-
"@typescript-eslint/utils" "5.17.0"
3689-
debug "^4.3.2"
3681+
"@typescript-eslint/eslint-plugin@5.27.1":
3682+
version "5.27.1"
3683+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz#fdf59c905354139046b41b3ed95d1609913d0758"
3684+
integrity sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==
3685+
dependencies:
3686+
"@typescript-eslint/scope-manager" "5.27.1"
3687+
"@typescript-eslint/type-utils" "5.27.1"
3688+
"@typescript-eslint/utils" "5.27.1"
3689+
debug "^4.3.4"
36903690
functional-red-black-tree "^1.0.1"
3691-
ignore "^5.1.8"
3691+
ignore "^5.2.0"
36923692
regexpp "^3.2.0"
3693-
semver "^7.3.5"
3693+
semver "^7.3.7"
36943694
tsutils "^3.21.0"
36953695

3696-
"@typescript-eslint/experimental-utils@5.17.0":
3697-
version "5.17.0"
3698-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.17.0.tgz#303ba1d766d715c3225a31845b54941889e52f6c"
3699-
integrity sha512-U4sM5z0/ymSYqQT6I7lz8l0ZZ9zrya5VIwrwAP5WOJVabVtVsIpTMxPQe+D3qLyePT+VlETUTO2nA1+PufPx9Q==
3696+
"@typescript-eslint/experimental-utils@5.27.1":
3697+
version "5.27.1"
3698+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.27.1.tgz#c5c5121a75cf875bfae8083c50f5ae7bfde6145a"
3699+
integrity sha512-Vd8uewIixGP93sEnmTRIH6jHZYRQRkGPDPpapACMvitJKX8335VHNyqKTE+mZ+m3E2c5VznTZfSsSsS5IF7vUA==
37003700
dependencies:
3701-
"@typescript-eslint/utils" "5.17.0"
3701+
"@typescript-eslint/utils" "5.27.1"
37023702

3703-
"@typescript-eslint/parser@5.17.0":
3704-
version "5.17.0"
3705-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.17.0.tgz#7def77d5bcd8458d12d52909118cf3f0a45f89d5"
3706-
integrity sha512-aRzW9Jg5Rlj2t2/crzhA2f23SIYFlF9mchGudyP0uiD6SenIxzKoLjwzHbafgHn39dNV/TV7xwQkLfFTZlJ4ig==
3703+
"@typescript-eslint/parser@5.27.1":
3704+
version "5.27.1"
3705+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.27.1.tgz#3a4dcaa67e45e0427b6ca7bb7165122c8b569639"
3706+
integrity sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==
37073707
dependencies:
3708-
"@typescript-eslint/scope-manager" "5.17.0"
3709-
"@typescript-eslint/types" "5.17.0"
3710-
"@typescript-eslint/typescript-estree" "5.17.0"
3711-
debug "^4.3.2"
3708+
"@typescript-eslint/scope-manager" "5.27.1"
3709+
"@typescript-eslint/types" "5.27.1"
3710+
"@typescript-eslint/typescript-estree" "5.27.1"
3711+
debug "^4.3.4"
37123712

3713-
"@typescript-eslint/scope-manager@5.17.0":
3714-
version "5.17.0"
3715-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.17.0.tgz#4cea7d0e0bc0e79eb60cad431c89120987c3f952"
3716-
integrity sha512-062iCYQF/doQ9T2WWfJohQKKN1zmmXVfAcS3xaiialiw8ZUGy05Em6QVNYJGO34/sU1a7a+90U3dUNfqUDHr3w==
3713+
"@typescript-eslint/scope-manager@5.27.1":
3714+
version "5.27.1"
3715+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz#4d1504392d01fe5f76f4a5825991ec78b7b7894d"
3716+
integrity sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==
37173717
dependencies:
3718-
"@typescript-eslint/types" "5.17.0"
3719-
"@typescript-eslint/visitor-keys" "5.17.0"
3718+
"@typescript-eslint/types" "5.27.1"
3719+
"@typescript-eslint/visitor-keys" "5.27.1"
37203720

3721-
"@typescript-eslint/type-utils@5.17.0":
3722-
version "5.17.0"
3723-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.17.0.tgz#1c4549d68c89877662224aabb29fbbebf5fc9672"
3724-
integrity sha512-3hU0RynUIlEuqMJA7dragb0/75gZmwNwFf/QJokWzPehTZousP/MNifVSgjxNcDCkM5HI2K22TjQWUmmHUINSg==
3721+
"@typescript-eslint/type-utils@5.27.1":
3722+
version "5.27.1"
3723+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz#369f695199f74c1876e395ebea202582eb1d4166"
3724+
integrity sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==
37253725
dependencies:
3726-
"@typescript-eslint/utils" "5.17.0"
3727-
debug "^4.3.2"
3726+
"@typescript-eslint/utils" "5.27.1"
3727+
debug "^4.3.4"
37283728
tsutils "^3.21.0"
37293729

3730-
"@typescript-eslint/types@5.17.0":
3731-
version "5.17.0"
3732-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.17.0.tgz#861ec9e669ffa2aa9b873dd4d28d9b1ce26d216f"
3733-
integrity sha512-AgQ4rWzmCxOZLioFEjlzOI3Ch8giDWx8aUDxyNw9iOeCvD3GEYAB7dxWGQy4T/rPVe8iPmu73jPHuaSqcjKvxw==
3730+
"@typescript-eslint/types@5.27.1":
3731+
version "5.27.1"
3732+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.27.1.tgz#34e3e629501349d38be6ae97841298c03a6ffbf1"
3733+
integrity sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==
37343734

3735-
"@typescript-eslint/typescript-estree@5.17.0":
3736-
version "5.17.0"
3737-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.17.0.tgz#a7cba7dfc8f9cc2ac78c18584e684507df4f2488"
3738-
integrity sha512-X1gtjEcmM7Je+qJRhq7ZAAaNXYhTgqMkR10euC4Si6PIjb+kwEQHSxGazXUQXFyqfEXdkGf6JijUu5R0uceQzg==
3735+
"@typescript-eslint/typescript-estree@5.27.1":
3736+
version "5.27.1"
3737+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz#7621ee78607331821c16fffc21fc7a452d7bc808"
3738+
integrity sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==
37393739
dependencies:
3740-
"@typescript-eslint/types" "5.17.0"
3741-
"@typescript-eslint/visitor-keys" "5.17.0"
3742-
debug "^4.3.2"
3743-
globby "^11.0.4"
3740+
"@typescript-eslint/types" "5.27.1"
3741+
"@typescript-eslint/visitor-keys" "5.27.1"
3742+
debug "^4.3.4"
3743+
globby "^11.1.0"
37443744
is-glob "^4.0.3"
3745-
semver "^7.3.5"
3745+
semver "^7.3.7"
37463746
tsutils "^3.21.0"
37473747

3748-
"@typescript-eslint/utils@5.17.0":
3749-
version "5.17.0"
3750-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.17.0.tgz#549a9e1d491c6ccd3624bc3c1b098f5cfb45f306"
3751-
integrity sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==
3748+
"@typescript-eslint/utils@5.27.1":
3749+
version "5.27.1"
3750+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.27.1.tgz#b4678b68a94bc3b85bf08f243812a6868ac5128f"
3751+
integrity sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==
37523752
dependencies:
37533753
"@types/json-schema" "^7.0.9"
3754-
"@typescript-eslint/scope-manager" "5.17.0"
3755-
"@typescript-eslint/types" "5.17.0"
3756-
"@typescript-eslint/typescript-estree" "5.17.0"
3754+
"@typescript-eslint/scope-manager" "5.27.1"
3755+
"@typescript-eslint/types" "5.27.1"
3756+
"@typescript-eslint/typescript-estree" "5.27.1"
37573757
eslint-scope "^5.1.1"
37583758
eslint-utils "^3.0.0"
37593759

3760-
"@typescript-eslint/visitor-keys@5.17.0":
3761-
version "5.17.0"
3762-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.17.0.tgz#52daae45c61b0211b4c81b53a71841911e479128"
3763-
integrity sha512-6K/zlc4OfCagUu7Am/BD5k8PSWQOgh34Nrv9Rxe2tBzlJ7uOeJ/h7ugCGDCeEZHT6k2CJBhbk9IsbkPI0uvUkA==
3760+
"@typescript-eslint/visitor-keys@5.27.1":
3761+
version "5.27.1"
3762+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz#05a62666f2a89769dac2e6baa48f74e8472983af"
3763+
integrity sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==
37643764
dependencies:
3765-
"@typescript-eslint/types" "5.17.0"
3766-
eslint-visitor-keys "^3.0.0"
3765+
"@typescript-eslint/types" "5.27.1"
3766+
eslint-visitor-keys "^3.3.0"
37673767

37683768
"@verdaccio/commons-api@10.2.0":
37693769
version "10.2.0"
@@ -6236,11 +6236,6 @@ eslint-visitor-keys@^2.0.0:
62366236
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
62376237
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
62386238

6239-
eslint-visitor-keys@^3.0.0:
6240-
version "3.0.0"
6241-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz#e32e99c6cdc2eb063f204eda5db67bfe58bb4186"
6242-
integrity sha512-mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q==
6243-
62446239
eslint-visitor-keys@^3.3.0:
62456240
version "3.3.0"
62466241
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
@@ -6516,6 +6511,17 @@ fast-glob@^3.1.1:
65166511
micromatch "^4.0.2"
65176512
picomatch "^2.2.1"
65186513

6514+
fast-glob@^3.2.9:
6515+
version "3.2.11"
6516+
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
6517+
integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
6518+
dependencies:
6519+
"@nodelib/fs.stat" "^2.0.2"
6520+
"@nodelib/fs.walk" "^1.2.3"
6521+
glob-parent "^5.1.2"
6522+
merge2 "^1.3.0"
6523+
micromatch "^4.0.4"
6524+
65196525
fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0:
65206526
version "2.1.0"
65216527
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
@@ -7025,7 +7031,7 @@ globalyzer@0.1.0:
70257031
resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465"
70267032
integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==
70277033

7028-
globby@^11.0.2, globby@^11.0.4:
7034+
globby@^11.0.2:
70297035
version "11.0.4"
70307036
resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
70317037
integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
@@ -7037,6 +7043,18 @@ globby@^11.0.2, globby@^11.0.4:
70377043
merge2 "^1.3.0"
70387044
slash "^3.0.0"
70397045

7046+
globby@^11.1.0:
7047+
version "11.1.0"
7048+
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
7049+
integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
7050+
dependencies:
7051+
array-union "^2.1.0"
7052+
dir-glob "^3.0.1"
7053+
fast-glob "^3.2.9"
7054+
ignore "^5.2.0"
7055+
merge2 "^1.4.1"
7056+
slash "^3.0.0"
7057+
70407058
globrex@^0.1.2:
70417059
version "0.1.2"
70427060
resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098"
@@ -7358,11 +7376,6 @@ ignore@^5.0.4, ignore@^5.1.4:
73587376
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
73597377
integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
73607378

7361-
ignore@^5.1.8:
7362-
version "5.1.9"
7363-
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.9.tgz#9ec1a5cbe8e1446ec60d4420060d43aa6e7382fb"
7364-
integrity sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==
7365-
73667379
import-cwd@^3.0.0:
73677380
version "3.0.0"
73687381
resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92"
@@ -9232,7 +9245,7 @@ merge-stream@^2.0.0:
92329245
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
92339246
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
92349247

9235-
merge2@^1.3.0:
9248+
merge2@^1.3.0, merge2@^1.4.1:
92369249
version "1.4.1"
92379250
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
92389251
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==

0 commit comments

Comments
 (0)
Please sign in to comment.