webpack-dll-bundles-plugin
Version:
A Webpack plugin for bundling group of packages as DLLs
14 lines (13 loc) • 431 B
TypeScript
/// <reference types="node" />
import { DllBundlesPluginOptions } from './interfaces';
export declare class DllBundlesPlugin {
private compiler;
private bundles;
private bundleControl;
private options;
constructor(options: DllBundlesPluginOptions);
apply(compiler: any): void;
run(next: (err?: Error) => any): void;
private setOptions(options);
static resolveFile(bundleName: string): string;
}