numux 1.15.0 → 1.15.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/README.md +1 -1
- package/dist/numux.js +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -353,7 +353,7 @@ Keybindings are shown in the status bar at the bottom of the app. Panes are read
|
|
|
353
353
|
|
|
354
354
|
### ghostty-opentui
|
|
355
355
|
|
|
356
|
-
Despite the name, [`ghostty-opentui`](https://github.com/
|
|
356
|
+
Despite the name, [`ghostty-opentui`](https://github.com/remorses/ghostty-opentui) is **not** a compatibility layer for the [Ghostty](https://ghostty.org) terminal. It uses Ghostty's Zig-based VT parser as the ANSI terminal emulation engine for OpenTUI's terminal renderable. It works in any terminal emulator (iTerm, Kitty, Alacritty, WezTerm, etc.) and adds ~8MB to install size due to native binaries.
|
|
357
357
|
|
|
358
358
|
## License
|
|
359
359
|
|
package/dist/numux.js
CHANGED
|
@@ -36,7 +36,7 @@ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports,
|
|
|
36
36
|
var require_package = __commonJS((exports, module) => {
|
|
37
37
|
module.exports = {
|
|
38
38
|
name: "numux",
|
|
39
|
-
version: "1.15.
|
|
39
|
+
version: "1.15.1",
|
|
40
40
|
description: "Terminal multiplexer with dependency orchestration",
|
|
41
41
|
type: "module",
|
|
42
42
|
license: "MIT",
|
|
@@ -1372,9 +1372,10 @@ function createReadinessChecker(config) {
|
|
|
1372
1372
|
if (outputBuffer.length > BUFFER_CAP2) {
|
|
1373
1373
|
outputBuffer = outputBuffer.slice(-BUFFER_CAP2);
|
|
1374
1374
|
}
|
|
1375
|
+
const clean = stripAnsi(outputBuffer);
|
|
1375
1376
|
if (!shouldCapture)
|
|
1376
|
-
return pattern.test(
|
|
1377
|
-
const match = pattern.exec(
|
|
1377
|
+
return pattern.test(clean);
|
|
1378
|
+
const match = pattern.exec(clean);
|
|
1378
1379
|
if (match) {
|
|
1379
1380
|
_captures = extractCaptures(match);
|
|
1380
1381
|
return true;
|