From 5a55b98b2cf11478e0276183b4bf7448e1d02952 Mon Sep 17 00:00:00 2001 From: John Kane Date: Thu, 6 Feb 2025 13:17:32 +0000 Subject: [PATCH] chore: ignition plugin from the npm scripts check --- scripts/check-v-next-npm-scripts.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/check-v-next-npm-scripts.js b/scripts/check-v-next-npm-scripts.js index 6e435187a6..da70188ea0 100644 --- a/scripts/check-v-next-npm-scripts.js +++ b/scripts/check-v-next-npm-scripts.js @@ -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);