UNPKG

@rushstack/heft

Version:

Build all your JavaScript projects the same way: A way that works.

20 lines 997 B
import type { CommandLineAction } from '@rushstack/ts-command-line'; import type { ITerminal } from '@rushstack/terminal'; import type { HeftConfiguration } from '../../configuration/HeftConfiguration'; import type { MetricsCollector } from '../../metrics/MetricsCollector'; import type { LoggingManager } from '../../pluginFramework/logging/LoggingManager'; import type { InternalHeftSession } from '../../pluginFramework/InternalHeftSession'; import type { HeftPhase } from '../../pluginFramework/HeftPhase'; export interface IHeftActionOptions { readonly internalHeftSession: InternalHeftSession; readonly heftConfiguration: HeftConfiguration; readonly terminal: ITerminal; readonly loggingManager: LoggingManager; readonly metricsCollector: MetricsCollector; readonly watch?: boolean; } export interface IHeftAction extends CommandLineAction { readonly watch: boolean; readonly selectedPhases: ReadonlySet<HeftPhase>; } //# sourceMappingURL=IHeftAction.d.ts.map