UNPKG

run-in-all

Version:

A CLI tool to run the same npm-script in multiple directories in parallel or sequential.

9 lines (8 loc) 245 B
declare type RunOptions = { isYarn: boolean; args: string; silent: boolean; parallel: boolean; }; export declare function runCommandInDirs(command: string, directories: string[], options: RunOptions): Promise<number>; export {};