@yolkai/nx-tao
Version:
13 lines (12 loc) • 441 B
TypeScript
import { experimental } from '@angular-devkit/core';
export interface RunOptions {
project: string;
target: string;
configuration: string;
help: boolean;
runOptions: {
[k: string]: any;
};
}
export declare function validateTargetAndConfiguration(workspace: experimental.workspace.Workspace, opts: RunOptions): void;
export declare function run(root: string, args: string[], isVerbose: boolean): Promise<any>;