@forge/bundler
6.1.23-next.56.1.23-next.6
out/webpack.d.ts~
out/webpack.d.tsModified+2−1
Index: package/out/webpack.d.ts
===================================================================
--- package/out/webpack.d.ts
+++ package/out/webpack.d.ts
@@ -6,16 +6,17 @@
export declare function getCompiler(config: webpack.Configuration): webpack.Compiler;
export declare type ConfigWithOutput = webpack.Configuration & {
output: CommonOutputOptions;
};
+export declare type Configs = [ConfigWithOutput, ...ConfigWithOutput[]];
export declare abstract class WebpackBundler implements Bundler {
protected readonly logger: Logger;
constructor(logger: Logger);
protected getOutput(args: BundlerArgs, config: ConfigWithOutput, stats: webpack.Stats): Promise<BundlerOutput>;
protected isRegularModule(name: string): boolean;
protected localModules(stats: webpack.Stats): Set<string>;
protected runCompiler(args: BundlerArgs, config: ConfigWithOutput): Promise<BundlerOutput>;
- abstract getConfig(args: BundlerArgs): Promise<ConfigWithOutput>;
+ abstract getConfigs(args: BundlerArgs): Promise<Configs>;
bundle(args: BundlerArgs): Promise<BundlerOutput>;
watch(args: BundlerWatchArgs, watch: BundlerWatch): Promise<BundlerWatchOutput>;
}
//# sourceMappingURL=webpack.d.ts.map
\ No newline at end of file