20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
|
|
import type { CliInitOptions, CompilerSystem, Config, Logger, TaskCommand } from '../internal/index';
|
||
|
|
import type { ConfigFlags } from './config-flags';
|
||
|
|
/**
|
||
|
|
* Runs the CLI with the given options. This is used by Stencil's default `bin/stencil` file,
|
||
|
|
* but can be used externally too.
|
||
|
|
* @param init a set of initialization options needed to run Stencil from its CLI
|
||
|
|
* @returns an empty promise
|
||
|
|
*/
|
||
|
|
export declare function run(init: CliInitOptions): Promise<void>;
|
||
|
|
/**
|
||
|
|
* Run individual CLI tasks.
|
||
|
|
* @param coreCompiler The core Stencil compiler to be used. The `run()` method handles loading the core compiler, however, `runTask()` must be passed it.
|
||
|
|
* @param config Assumes the config has already been validated and has the "sys" and "logger" properties.
|
||
|
|
* @param task The task command to run, such as `build`.
|
||
|
|
* @returns an empty promise
|
||
|
|
*/
|
||
|
|
export declare function runTask(coreCompiler: any, config: Config, task: TaskCommand): Promise<void>;
|
||
|
|
export declare function parseFlags(args: string[], _sys?: CompilerSystem): ConfigFlags;
|
||
|
|
export { CompilerSystem, Config, ConfigFlags, Logger, TaskCommand };
|