numux 2.10.3 → 2.10.4
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 +2 -3
- package/dist/utils/color.d.ts +1 -1
- package/package.json +1 -1
package/dist/numux.js
CHANGED
|
@@ -37,7 +37,7 @@ var __require = import.meta.require;
|
|
|
37
37
|
var require_package = __commonJS((exports, module) => {
|
|
38
38
|
module.exports = {
|
|
39
39
|
name: "numux",
|
|
40
|
-
version: "2.10.
|
|
40
|
+
version: "2.10.4",
|
|
41
41
|
description: "Terminal multiplexer with dependency orchestration",
|
|
42
42
|
type: "module",
|
|
43
43
|
license: "MIT",
|
|
@@ -1058,9 +1058,8 @@ var STATUS_ANSI = {
|
|
|
1058
1058
|
skipped: hexToAnsi(BASIC_COLORS.gray)
|
|
1059
1059
|
};
|
|
1060
1060
|
var ANSI_RESET = "\x1B[0m";
|
|
1061
|
-
var ANSI_RE = /\x1b\[[0-9;?]*[A-Za-z]|\x1b\][^\x07\x1b]*(?:\x07|\x1b\\)|\x1b[()#][0-9A-Za-z]|\x1b[A-Za-z><=]/g;
|
|
1062
1061
|
function stripAnsi(str) {
|
|
1063
|
-
return
|
|
1062
|
+
return Bun.stripANSI(str);
|
|
1064
1063
|
}
|
|
1065
1064
|
var DEFAULT_PALETTE = [
|
|
1066
1065
|
BASIC_COLORS.cyan,
|
package/dist/utils/color.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ import type { ProcessStatus, ResolvedNumuxConfig } from '../types';
|
|
|
30
30
|
/** ANSI color codes for process statuses */
|
|
31
31
|
export declare const STATUS_ANSI: Partial<Record<ProcessStatus, string>>;
|
|
32
32
|
export declare const ANSI_RESET = "\u001B[0m";
|
|
33
|
-
/** Strip ANSI escape sequences from text */
|
|
33
|
+
/** Strip ANSI escape sequences from text (SIMD-accelerated via Bun) */
|
|
34
34
|
export declare function stripAnsi(str: string): string;
|
|
35
35
|
/** Pick a deterministic color from the default palette based on the process name */
|
|
36
36
|
export declare function colorFromName(name: string): Color;
|