Run multiple commands using a single job. Ideal for developers who want to serve backend and frontend simultaneously.
$ npm i -g dualist # or...
$ pnpm add -g dualist # or...
$ yarn global add dualist
$ dualist api web # "api" and "web" are folders present in the current cwd
$ dualist api web -c 'npm run dev' # -c specifies a custom command, defaults to "npm run serve"
You may also want to add dualist in your package.json's scripts:
{
...
"scripts": {
"dev": "dualist api web"
}
}
This software is MIT licensed.