numux 1.11.0 → 1.11.1

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/numux.js +2 -2
  2. package/package.json +1 -1
package/dist/numux.js CHANGED
@@ -22,7 +22,7 @@ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports,
22
22
  var require_package = __commonJS((exports, module) => {
23
23
  module.exports = {
24
24
  name: "numux",
25
- version: "1.11.0",
25
+ version: "1.11.1",
26
26
  description: "Terminal multiplexer with dependency orchestration",
27
27
  type: "module",
28
28
  license: "MIT",
@@ -1424,7 +1424,7 @@ class ProcessRunner {
1424
1424
  `;
1425
1425
  this.handler.onOutput(encoder.encode(msg));
1426
1426
  }
1427
- if (!this.readyTimedOut) {
1427
+ if (!(this.readyTimedOut || this.restarting)) {
1428
1428
  const status = this.stopping ? "stopped" : code === 0 ? "finished" : "failed";
1429
1429
  this.handler.onStatus(status);
1430
1430
  this.handler.onExit(code);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numux",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "Terminal multiplexer with dependency orchestration",
5
5
  "type": "module",
6
6
  "license": "MIT",