tasktui 1.0.23 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/tasks.js +1 -1
  2. package/package.json +1 -1
package/dist/tasks.js CHANGED
@@ -89,7 +89,7 @@ export async function cleanup(state) {
89
89
  return;
90
90
  const exitPromises = processes.map(([_, proc]) => new Promise((resolve) => {
91
91
  proc.on('close', resolve);
92
- proc.kill('SIGTERM');
92
+ proc.kill('SIGINT');
93
93
  }));
94
94
  const timeout = new Promise((resolve) => setTimeout(() => resolve('timeout'), CLEANUP_TIMEOUT));
95
95
  const result = await Promise.race([
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tasktui",
3
3
  "description": "Run tasks in a multiplexed terminal with dependency management.",
4
- "version": "1.0.23",
4
+ "version": "1.0.24",
5
5
  "license": "MIT",
6
6
  "bin": "dist/cli.js",
7
7
  "type": "module",