eisd
Version:
Execute your favorite command in SubDirectories. Use it like: `eisd '[command]' [subdirs...]` (Example: `eisd 'yarn build' client server scripts`)
17 lines (16 loc) • 570 B
TypeScript
declare type EisdConfig = {
commandToExecute: string;
directoriesToUse: string[];
allowErrors?: boolean;
aSynchronous?: boolean;
envVariable?: string;
yarnWorkspaces?: boolean;
verbose?: boolean;
};
/**
* This is a CLI tool helps you do execute cmds per given folder. If you try to do the same
* with a normal cd command, it will do it in the wrong folder. So this tool simply
* navigates to the proper folders and does `your command`. That's it. #ez #boring
*/
export declare function eisd(config: EisdConfig): Promise<void>;
export {};