1 | import { Input } from '../commands';
|
2 | import { AssetsManager } from '../lib/compiler/assets-manager';
|
3 | import { TsConfigProvider } from '../lib/compiler/helpers/tsconfig-provider';
|
4 | import { PluginsLoader } from '../lib/compiler/plugins/plugins-loader';
|
5 | import { TypeScriptBinaryLoader } from '../lib/compiler/typescript-loader';
|
6 | import { ConfigurationLoader } from '../lib/configuration';
|
7 | import { FileSystemReader } from '../lib/readers';
|
8 | import { AbstractAction } from './abstract.action';
|
9 | export declare class BuildAction extends AbstractAction {
|
10 | protected readonly pluginsLoader: PluginsLoader;
|
11 | protected readonly tsLoader: TypeScriptBinaryLoader;
|
12 | protected readonly tsConfigProvider: TsConfigProvider;
|
13 | protected readonly fileSystemReader: FileSystemReader;
|
14 | protected readonly loader: ConfigurationLoader;
|
15 | protected readonly assetsManager: AssetsManager;
|
16 | handle(commandInputs: Input[], commandOptions: Input[]): Promise<void>;
|
17 | runBuild(commandInputs: Input[], commandOptions: Input[], watchMode: boolean, watchAssetsMode: boolean, isDebugEnabled?: boolean, onSuccess?: () => void): Promise<void>;
|
18 | private runSwc;
|
19 | private runWebpack;
|
20 | private runTsc;
|
21 | private getWebpackConfigFactoryByPath;
|
22 | }
|