Michael P. Jung
Michael P. Jung
SSolidJS
Created by Michael P. Jung on 4/14/2025 in #support
Killing `pnpm dev` results in a defunct `esbuild` process
Yeah... definitely a dev container issue. I even end up with some defunct git processes... O_o
5 replies
SSolidJS
Created by Michael P. Jung on 4/14/2025 in #support
Killing `pnpm dev` results in a defunct `esbuild` process
Mmmh... well... that didn't really solve the issue it seams. The more I dig into that issue it seams to be more related to an issue with vscode,dev containers and docker than anything else.
5 replies
SSolidJS
Created by Michael P. Jung on 4/14/2025 in #support
Killing `pnpm dev` results in a defunct `esbuild` process
Now the zombie processes get reaped. It's not ideal but solves my biggest pain point of an ever growing process list.
5 replies
SSolidJS
Created by Michael P. Jung on 4/14/2025 in #support
Killing `pnpm dev` results in a defunct `esbuild` process
I "fixed" it for the time being by wrapping the vinxi dev with tini -s. So my package.json looks like that now:
- "dev": "vinxi dev",
+ "dev": "tini -s -- vinxi dev",
- "dev": "vinxi dev",
+ "dev": "tini -s -- vinxi dev",
5 replies