Skip to content

Commit

Permalink
fix: fix typo in function name check-dependencies.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mdqst authored Dec 26, 2024
1 parent 7a27499 commit 80cf472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/check-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const IGNORE_PEER_DEPENDENCIES_CHECK_FOR_PACKAGES = {
["ts-node"]: ["hardhat"],
};

function checkPeerDepedencies(packageJson) {
function checkPeerDependencies(packageJson) {
if (packageJson.peerDependencies === undefined) {
return true;
}
Expand Down Expand Up @@ -169,7 +169,7 @@ function main() {
continue;
}

const peersOk = checkPeerDepedencies(packageJson);
const peersOk = checkPeerDependencies(packageJson);
const dependencyMap = getDependencyMap(packageJson);
dependencyMaps.push(dependencyMap);

Expand Down

0 comments on commit 80cf472

Please sign in to comment.