generate-license-file-webpack-plugin
Version:
Webpack plugin to generate a text file asset containing all of the licenses for your production third-party dependencies.
12 lines (11 loc) • 376 B
TypeScript
import { Compiler } from "webpack";
import { Options } from "./options";
/**
* Webpack plugin to generate a text file asset containing all of the licenses for your production third-party dependencies.
*/
export declare class LicenseFilePlugin {
private pluginName;
private options;
constructor(options?: Partial<Options>);
apply(compiler: Compiler): void;
}