Skip to content

Commit 8d18057

Browse files
committed
chore: ignore ./packages from the typescript version comparison
`v-next` has bumped the root version of typescript. This clashes with some of the `./packages`. For the moment ignore this check.
1 parent 9c9cc39 commit 8d18057

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

scripts/check-dependencies.js

+16-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,22 @@ const IGNORE_SAME_VERSION_FOR_PACKAGES = {
2828
],
2929
ethers: ["@nomicfoundation/hardhat-verify"],
3030
["ts-node"]: ["hardhat"],
31-
["typescript"]: ["hardhat"],
31+
["typescript"]: [
32+
"hardhat",
33+
// There is an incompatibilty with root introduced in `v-next`,
34+
// we are explicitly choosing to ignore the `./packages` versions
35+
// of these packages here.
36+
"@nomicfoundation/hardhat-chai-matchers",
37+
"@nomicfoundation/hardhat-ethers",
38+
"@nomicfoundation/hardhat-foundry",
39+
"@nomicfoundation/hardhat-ledger",
40+
"@nomicfoundation/hardhat-network-helpers",
41+
"hardhat-shorthand",
42+
"@nomicfoundation/hardhat-verify",
43+
"@nomicfoundation/hardhat-viem",
44+
"@nomiclabs/hardhat-vyper",
45+
"@nomicfoundation/hardhat-web3-v4",
46+
],
3247
};
3348

3449
const IGNORE_PEER_DEPENDENCIES_CHECK_FOR_PACKAGES = {

0 commit comments

Comments
 (0)