A tool for running multiple processes in parallel with useful output. Designed for monorepos.
⚠️ Alpha and still a little frustrating to use. May be bugs.
module.exports = {
panes: [
{ label: 'Web', command: 'npm run start-web' },
{ label: 'Test', command: 'npm t -- --watch' },
{ label: 'REPL', command: 'node' },
{
label: 'Builds',
commands: [
{
label: 'package-a',
command: `./node_modules/lerna/cli.js exec npm run build-watch --scope package-a`,
},
{
label: 'package-b',
command: `./node_modules/lerna/cli.js exec npm run build-watch --scope package-b`,
},
{
label: 'package-c',
command: `./node_modules/lerna/cli.js exec npm run build-watch --scope package-c`,
},
]
}
]
}
- Standardise scrolling between shell panes and log panes.
- Add some tests (yeah I didn't TDD much of this.)
- Add --help.
- Add --version.
- Support custom layouts.
- Bug: Display correct error when an error occurs in configuration file.