Skip to content

Commit

Permalink
chore: ignition plugin from the npm scripts check
Browse files Browse the repository at this point in the history
  • Loading branch information
kanej committed Feb 6, 2025
1 parent 85c3b17 commit 5a55b98
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/check-v-next-npm-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ for (const dir of dirs) {
continue;
}

// TODO: This is a temporary solution until we convert Ignitions tests
// to Node Test Runner.
if (dir.name === "hardhat-ignition") {
continue;
}

const packageJsonPath = path.resolve(vNextDir, dir.name, "package.json");
const packageJson = require(packageJsonPath);

Expand Down

0 comments on commit 5a55b98

Please sign in to comment.