concurrently
concurrently copied to clipboard
Make command more readable
Isn't it possible to allow something like this in my package.json file:
"dev": "concurrently 'llb -w' 'vite -c src/vite.config.js src' 'promptme -w'"
i.e. use single quotes inside the concurrently command string. This would be much easier to read and write instead of having to use backslash escaped double quotes. JSON requires strings to be delimited by double quotes, but there's no such requirement when it comes to characters inside a string.
I tried it, but it didn't work ;-(