Skip to content

Commit c778d2f

Browse files
whitelist the plugin when checking script consistency
1 parent aeee5b8 commit c778d2f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/check-v-next-npm-scripts.js

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ for (const dir of dirs) {
2525
continue;
2626
}
2727

28+
// TODO: This is a temporary solution because compiler downloads are not yet managed via a mutex.
29+
// As a result, the compilation step must occur in the pretest script to prevent multiple compilers from being downloaded simultaneously.
30+
if (dir.name === "hardhat-chai-matchers") {
31+
continue;
32+
}
33+
2834
const packageJsonPath = path.resolve(vNextDir, dir.name, "package.json");
2935
const packageJson = require(packageJsonPath);
3036

0 commit comments

Comments
 (0)