numux 1.12.0 → 1.12.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.
- package/dist/numux.js +21 -5
- package/package.json +1 -1
package/dist/numux.js
CHANGED
|
@@ -5,15 +5,29 @@ var __getProtoOf = Object.getPrototypeOf;
|
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
6
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
function __accessProp(key) {
|
|
9
|
+
return this[key];
|
|
10
|
+
}
|
|
11
|
+
var __toESMCache_node;
|
|
12
|
+
var __toESMCache_esm;
|
|
8
13
|
var __toESM = (mod, isNodeMode, target) => {
|
|
14
|
+
var canCache = mod != null && typeof mod === "object";
|
|
15
|
+
if (canCache) {
|
|
16
|
+
var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
|
|
17
|
+
var cached = cache.get(mod);
|
|
18
|
+
if (cached)
|
|
19
|
+
return cached;
|
|
20
|
+
}
|
|
9
21
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
10
22
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
11
23
|
for (let key of __getOwnPropNames(mod))
|
|
12
24
|
if (!__hasOwnProp.call(to, key))
|
|
13
25
|
__defProp(to, key, {
|
|
14
|
-
get: (
|
|
26
|
+
get: __accessProp.bind(mod, key),
|
|
15
27
|
enumerable: true
|
|
16
28
|
});
|
|
29
|
+
if (canCache)
|
|
30
|
+
cache.set(mod, to);
|
|
17
31
|
return to;
|
|
18
32
|
};
|
|
19
33
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
@@ -22,7 +36,7 @@ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports,
|
|
|
22
36
|
var require_package = __commonJS((exports, module) => {
|
|
23
37
|
module.exports = {
|
|
24
38
|
name: "numux",
|
|
25
|
-
version: "1.12.
|
|
39
|
+
version: "1.12.1",
|
|
26
40
|
description: "Terminal multiplexer with dependency orchestration",
|
|
27
41
|
type: "module",
|
|
28
42
|
license: "MIT",
|
|
@@ -1705,11 +1719,13 @@ class ProcessManager {
|
|
|
1705
1719
|
const maxRestarts = proc.maxRestarts;
|
|
1706
1720
|
if (maxRestarts !== undefined && attempt >= maxRestarts) {
|
|
1707
1721
|
log(`[${name}] Reached maxRestarts limit (${maxRestarts}), not restarting`);
|
|
1708
|
-
|
|
1709
|
-
|
|
1722
|
+
if (maxRestarts > 0) {
|
|
1723
|
+
const encoder2 = new TextEncoder;
|
|
1724
|
+
const msg2 = `\r
|
|
1710
1725
|
\x1B[31m[numux] reached restart limit (${maxRestarts}), giving up\x1B[0m\r
|
|
1711
1726
|
`;
|
|
1712
|
-
|
|
1727
|
+
this.emit({ type: "output", name, data: encoder2.encode(msg2) });
|
|
1728
|
+
}
|
|
1713
1729
|
return;
|
|
1714
1730
|
}
|
|
1715
1731
|
const delay = Math.min(BACKOFF_BASE_MS * 2 ** attempt, BACKOFF_MAX_MS);
|