Closed iuioiua closed 2 months ago
IIUC, it has no other use case outside spawned processes. After Deno 2, one can just use Deno.ChildProcess.prototype.kill. At this point, the deprecation can happen at Deno 2, and the removal sometime after.
Deno.ChildProcess.prototype.kill
Deno.kill is useful to kill process groups by passing in a negative process id. This is not possible with ChildProcess.prototype.kill.
Deno.kill
ChildProcess.prototype.kill
IIUC, it has no other use case outside spawned processes. After Deno 2, one can just use
Deno.ChildProcess.prototype.kill
. At this point, the deprecation can happen at Deno 2, and the removal sometime after.