Skip to content

Commit

Permalink
Don't check dependencies of private packages
Browse files Browse the repository at this point in the history
  • Loading branch information
alcuadrado authored and kanej committed Jun 28, 2024
1 parent 7896c6d commit b0d9601
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions scripts/check-v-next-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,8 @@ function main() {

const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf-8"));

// temporarily ignore hardhat toolboxs
if (
packageJson.name === "@nomicfoundation/hardhat-toolbox" ||
packageJson.name === "@nomicfoundation/hardhat-toolbox-viem"
) {
// We ignore any private package
if (packageJson.private === true) {
continue;
}

Expand Down

0 comments on commit b0d9601

Please sign in to comment.