Skip to content

Commit

Permalink
chore: exclude ignition-ethers from npm scripts comparison
Browse files Browse the repository at this point in the history
Until tests are ported to Node Test Runner.
  • Loading branch information
kanej committed Feb 14, 2025
1 parent f562052 commit b8e7b05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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 @@ -55,6 +55,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-ethers") {
continue;
}

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

Expand Down
2 changes: 1 addition & 1 deletion v-next/hardhat-ignition-ethers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --build",
"build": "tsc --build .",
"lint": "pnpm prettier --check && pnpm eslint",
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
Expand Down

0 comments on commit b8e7b05

Please sign in to comment.