Files
klz-cables.com/.pnpm-store/v10/files/1b/a5021c7fab9e69b0afdc3b32100424abd5117da90759887c5bb0c767360308210f0ae20239d2d65dbfc4b4ced098d148d7d83e2ff761473aac19395f0abd12
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

30 lines
1.1 KiB
Plaintext

export type CustomVersionParser = (version: string) => {
parts: number[];
preReleases: string[];
};
export type DependencyCheckerArgs = {
/**
* Define dependency groups to ensure that all dependencies within that group are on the same version, and that no dependencies in that group with different versions are found
*/
dependencyGroups?: {
dependencies: string[];
/**
* Name of the dependency group to be displayed in the error message
*/
name: string;
targetVersion?: string;
targetVersionDependency?: string;
}[];
/**
* Dependency package names keyed to their required versions. Supports >= (greater or equal than version) as a prefix, or no prefix for the exact version
*/
dependencyVersions?: {
[dependency: string]: {
customVersionParser?: CustomVersionParser;
required?: boolean;
version?: string;
};
};
};
export declare function checkDependencies({ dependencyGroups, dependencyVersions, }: DependencyCheckerArgs): Promise<void>;
//# sourceMappingURL=dependencyChecker.d.ts.map