diff --git a/packages/repo-tools/src/commands/peer-deps/peer-deps.ts b/packages/repo-tools/src/commands/peer-deps/peer-deps.ts index 2dbcd84492..70e566dd32 100644 --- a/packages/repo-tools/src/commands/peer-deps/peer-deps.ts +++ b/packages/repo-tools/src/commands/peer-deps/peer-deps.ts @@ -104,11 +104,6 @@ export default async ({ fix }: { fix: boolean }) => { const packagesWithRelevantDependencies = []; for (const pkg of packages) { - if (pkg.dir.includes('canon-website')) { - // Canon website is a special case and should not be checked. - continue; - } - if (isStandaloneApplication(pkg.packageJson as ExtendedPackageJSON)) { // Standalone applications are not expected to have peer dependencies. continue;