yarn-berry-deduplicate
Version:
Deduplication tool for yarn.lock files
11 lines • 393 B
TypeScript
export type LegacyFewerStrategy = 'fewer';
export type DedupeStrategy = LegacyFewerStrategy | 'mostCommon' | 'fewerHighest' | 'highest';
export type Options = {
includeScopes?: string[];
includePackages?: string[];
excludePackages?: string[];
excludeScopes?: string[];
strategy?: DedupeStrategy;
includePrerelease?: boolean;
};
//# sourceMappingURL=sharedTypes.d.ts.map