Skip to content

Latest commit

 

History

History
76 lines (54 loc) · 1.4 KB

README.md

File metadata and controls

76 lines (54 loc) · 1.4 KB

Run multiple terminals (or iTerm split panes) at once

If you have installed iTerm.app on your Mac. Your iTerm will opened like this.

iTerm example

If you don't have iTerm, those commands will be executed via default terminal app (cmd.exe or Terminal.app)

Usage

And add config

test:
  - echo multiplerun!
  - - echo hello
    - echo world
npx multiplerun test

Usage on package.json

npm install multiplerun --save-dev

And add config to your package.json

{
  "name": "some-package",
  "scripts": {
    "multiplerun-test": "multiplerun test"
  },
  "multiplerun": {
    "test": ["echo multiplerun!", ["echo hello", "echo world"]]
  }
}
npm run multiplerun-test

Run in script

import multiplerun from 'multiplerun';

multiplerun(['echo multiplerun!', ['echo hello', 'echo world']]);

API

export type Command = { command: string; wait: number; cwd: string };

export type Commands = (Command | Command[])[];

export type ConfigCommand =
  | string
  | { command: string; wait?: number; cwd?: string };

export type ConfigCommands = (ConfigCommand | ConfigCommand[])[];

export type Options = {
  cwd?: string;
};
function multiplerun(commands: ConfigCommands, options?: Options);