Files
klz-cables.com/.pnpm-store/v10/files/62/f1c0a7f4a466110c3741ca9b7ca1b2bca8b66c8005f160adb4d386fd25ffdf1611871bcac79006d0e3f378f2b955f2fb5d53d75b9ca02800b1ffcb74270d01
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

22 lines
761 B
Plaintext

import { checkDependencies } from './utilities/dependencies/dependencyChecker.js';
import { PAYLOAD_PACKAGE_LIST } from './versions/payloadPackageList.js';
export function checkPayloadDependencies() {
const dependencies = [
...PAYLOAD_PACKAGE_LIST
];
if (process.env.PAYLOAD_CI_DEPENDENCY_CHECKER !== 'true') {
dependencies.push('@payloadcms/plugin-sentry');
}
// First load. First check if there are mismatching dependency versions of payload packages
void checkDependencies({
dependencyGroups: [
{
name: 'payload',
dependencies,
targetVersionDependency: 'payload'
}
]
});
}
//# sourceMappingURL=checkPayloadDependencies.js.map