msync
Version:
Easily manage building and syncing multiple node-modules in a flexibly defined workspace.
21 lines (20 loc) • 544 B
TypeScript
export declare const name = "run";
export declare const alias = "r";
export declare const description = "Runs the given command on all modules.";
export declare const args: {
'<command>': string;
'-i': string;
'-c': string;
};
export declare function cmd(args?: {
params: string[];
options: {
i?: boolean;
c?: boolean;
};
}): Promise<void>;
export interface IOptions {
includeIgnored?: boolean;
concurrent?: boolean;
}
export declare function run(cmd: string, options?: IOptions): Promise<void>;