How to open multiple split terminals for each npm script?
问题 I have like 5 npm scripts and each of them need their own terminal because they runned in watch mode and write something in console. Here is the scripts: "server-build-dev": "cd ts/backend && npx tsc -w && npm run server-lint", "server-run-dev": "pm2 flush && pm2 start --only server --env development && pm2 logs", "server-lint": "cd ts/backend && esw -w --ext .ts", "client-build-dev": "cd ts/configs && npx webpack --config client.webpack.dev.js" I prefer split terminals to see everything that