generate-license-file
Version:
Generates a text file containing all of the licenses for your production dependencies
9 lines (8 loc) • 390 B
TypeScript
import { LicenseNoticeKey, ResolvedLicense } from "../resolveLicenses";
type ResolveLicensesOptions = {
replace?: Record<string, string>;
exclude?: string[];
omitVersion?: boolean;
};
export declare const resolveDependenciesForPnpmProject: (packageJson: string, licensesMap: Map<LicenseNoticeKey, ResolvedLicense>, options?: ResolveLicensesOptions) => Promise<void>;
export {};