generate-license-file
Version:
Generates a text file containing all of the licenses for your production dependencies
13 lines (12 loc) • 422 B
TypeScript
export interface AppendOption {
/**
* File paths to read in and append to the bottom of the generated license file
*
* This is useful for content that's included via a CDN or for other types
* of content that are not included in the project's package.json
* like images or fonts
*
* @example ["./licenses/some-image.txt", "./licenses/some-font.txt"]
*/
append?: string[];
}