index.d.ts 1.0 KB

1234567891011121314151617
  1. import type { CliInitOptions, CompilerSystem, Config, Logger, TaskCommand } from '../internal/index';
  2. import type { ConfigFlags } from './config-flags';
  3. /**
  4. * Runs the CLI with the given options. This is used by Stencil's default `bin/stencil` file,
  5. * but can be used externally too.
  6. * @param init a set of initialization options needed to run Stencil from its CLI
  7. */
  8. export declare function run(init: CliInitOptions): Promise<void>;
  9. /**
  10. * Run individual CLI tasks.
  11. * @param coreCompiler The core Stencil compiler to be used. The `run()` method handles loading the core compiler, however, `runTask()` must be passed it.
  12. * @param config Assumes the config has already been validated and has the "sys" and "logger" properties.
  13. * @param task The task command to run, such as `build`.
  14. */
  15. export declare function runTask(coreCompiler: any, config: Config, task: TaskCommand): Promise<void>;
  16. export declare function parseFlags(args: string[], _sys?: CompilerSystem): ConfigFlags;
  17. export { CompilerSystem, Config, ConfigFlags, Logger, TaskCommand };