@nx/webpack
Version:
14 lines • 552 B
TypeScript
import { ExecutorContext } from '@nx/devkit';
import type { WebpackExecutorOptions } from './schema';
export type WebpackExecutorEvent = {
success: false;
outfile?: string;
options?: WebpackExecutorOptions;
} | {
success: true;
outfile: string;
options?: WebpackExecutorOptions;
};
export declare function webpackExecutor(_options: WebpackExecutorOptions, context: ExecutorContext): AsyncGenerator<WebpackExecutorEvent, WebpackExecutorEvent, undefined>;
export default webpackExecutor;
//# sourceMappingURL=webpack.impl.d.ts.map