I want to run two concurrent commands using npm run in visual studio code, each one in a separate terminal tab in vscode.
I tried doing this:
start 'command a' && start 'command b'
but that just opened them in two different cmd windows I want them to open in a new terminal tab within vscode Is there a way to do this?
I'm using windows 10 and running it from an npm script if it matters