UNPKG

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.

5 lines (4 loc) 253 B
import { Compilation, Compiler } from "webpack"; import { Options } from "./options"; export type CompilationTap = (compilation: Compilation) => void; export declare const compilationTapFactory: (options: Options, compiler: Compiler) => CompilationTap;