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 70e566dd32..87bcc898bf 100644 --- a/packages/repo-tools/src/commands/peer-deps/peer-deps.ts +++ b/packages/repo-tools/src/commands/peer-deps/peer-deps.ts @@ -104,6 +104,11 @@ export default async ({ fix }: { fix: boolean }) => { const packagesWithRelevantDependencies = []; for (const pkg of packages) { + if (pkg.dir.includes('packages/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;