Using the concurrently() API, it is not printing to stdout, unless raw:true.
test.js
import { concurrently } from "concurrently"
const build = {
command: "ls -al",
name: "TSC",
},
servDev = {
command: "ls -al ",
name: "SERVER",
},
cmds = [build, servDev]
const {result} = concurrently(cmds, {raw:false})
node test.js
No output.
Set raw:true ==> expected output
# macos
node --version
v21.7.2
npx concurrently -v
8.2.2