Describe the bug
Please provide the following information:
- Description: Running node in any way with concurrently seems to be crashing
- Expected Behavior: Able to run process
- Environment: At least the OS, Node.js, and concurrently's versions
- Concurrently: ^8.2.2
- OS: PopOS Cosmic
- Node: v24.14.1
- pnpm: 10.33.0
- Reproduction: Unsure how reproducible this is.
- Create scripts
"scripts": {
"oth": "concurrently \"pnpm start\"",
"start": "node src/index.js",
},
pnpm oth
───────────────────────────────────────────╮
╰─────> pnpm oth
> writer-backend@1.0.0 oth /home/untitled1/ProfessionalProjects/writer/backend
> concurrently "pnpm start"
[0]
[0] > writer-backend@1.0.0 start /home/untitled1/ProfessionalProjects/writer/backend
[0] > node src/index.js
[0]
[0] ELIFECYCLE Command failed with exit code 1.
[0] pnpm start exited with code 1
ELIFECYCLE Command failed with exit code 1.
/home/untitled1/ProfessionalProjects/writer/backend
───────────────────────────────────────────╮
╰─────> pnpm start
> writer-backend@1.0.0 start /home/untitled1/ProfessionalProjects/writer/backend
> node src/index.js
Writer API listening on port 3001
[EmailService] Initialized with provider: resend
[EmailService] Initialized successfully
Edit
This is also the case with nuxt:
"scripts": {
"dev": "nuxt dev",
"build": "nuxt generate",
"preview": "nuxt preview"
},
[fe] ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL proj@1.0.0 dev: `nuxt dev`
[fe] Exit status 1
[fe] ELIFECYCLE Command failed with exit code 1.
[fe] pnpm dev:nuxt exited with code 1
Describe the bug
Please provide the following information:
pnpm oth───────────────────────────────────────────╮ ╰─────> pnpm oth > writer-backend@1.0.0 oth /home/untitled1/ProfessionalProjects/writer/backend > concurrently "pnpm start" [0] [0] > writer-backend@1.0.0 start /home/untitled1/ProfessionalProjects/writer/backend [0] > node src/index.js [0] [0] ELIFECYCLE Command failed with exit code 1. [0] pnpm start exited with code 1 ELIFECYCLE Command failed with exit code 1. /home/untitled1/ProfessionalProjects/writer/backend ───────────────────────────────────────────╮ ╰─────> pnpm start > writer-backend@1.0.0 start /home/untitled1/ProfessionalProjects/writer/backend > node src/index.js Writer API listening on port 3001 [EmailService] Initialized with provider: resend [EmailService] Initialized successfullyEdit
This is also the case with nuxt: