renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
9 lines (8 loc) • 591 B
TypeScript
import type { YarnLock, YarnLockEntrySummary } from './types';
export declare function parseEntry(depNameConstraint: string): {
entryName: string;
constraint: string;
} | null;
export declare function getYarn1LockedDependencies(yarnLock: YarnLock, depName: string, currentVersion: string): YarnLockEntrySummary[];
export declare function getYarn2LockedDependencies(yarnLock: YarnLock, depName: string, currentVersion: string): YarnLockEntrySummary[];
export declare function getLockedDependencies(yarnLock: YarnLock, depName: string, currentVersion: string): YarnLockEntrySummary[];