numux 2.7.0 → 2.7.2

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 +11 -8
  2. package/package.json +6 -3
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: "2.7.0",
39
+ version: "2.7.2",
40
40
  description: "Terminal multiplexer with dependency orchestration",
41
41
  type: "module",
42
42
  license: "MIT",
@@ -79,14 +79,17 @@ var require_package = __commonJS((exports, module) => {
79
79
  "dist/"
80
80
  ],
81
81
  dependencies: {
82
- "@opentui/core": "^0.1.81",
83
- "ghostty-opentui": "^1.4.3"
82
+ "@opentui/core": "^0.1.88",
83
+ "ghostty-opentui": "^1.4.7"
84
84
  },
85
85
  devDependencies: {
86
86
  "@biomejs/biome": "^2.4.4",
87
87
  "@commitlint/cli": "^20.4.2",
88
88
  "@commitlint/config-conventional": "^20.4.2",
89
89
  "@types/bun": "^1.3.9"
90
+ },
91
+ patchedDependencies: {
92
+ "ghostty-opentui@1.4.7": "patches/ghostty-opentui@1.4.7.patch"
90
93
  }
91
94
  };
92
95
  });
@@ -2788,7 +2791,7 @@ class StatusBar {
2788
2791
  this.renderable = new TextRenderable(renderer, {
2789
2792
  id: "status-bar",
2790
2793
  width: "100%",
2791
- height: 1,
2794
+ wrapMode: "word",
2792
2795
  content: this.buildContent(),
2793
2796
  bg: "#1a1a1a",
2794
2797
  paddingX: 1
@@ -3894,9 +3897,9 @@ function setupShutdownHandlers(app, logWriter) {
3894
3897
  process.on("SIGTERM", shutdown);
3895
3898
  process.on("uncaughtException", (err) => {
3896
3899
  log("Uncaught exception:", err?.message ?? err);
3897
- process.stderr.write(`numux: unexpected error: ${err?.stack ?? err}
3898
- `);
3899
3900
  app.shutdown().finally(() => {
3901
+ process.stderr.write(`numux: unexpected error: ${err?.stack ?? err}
3902
+ `);
3900
3903
  logWriter?.cleanup();
3901
3904
  process.exit(1);
3902
3905
  });
@@ -3904,9 +3907,9 @@ function setupShutdownHandlers(app, logWriter) {
3904
3907
  process.on("unhandledRejection", (reason) => {
3905
3908
  const message = reason instanceof Error ? reason.message : String(reason);
3906
3909
  log("Unhandled rejection:", message);
3907
- process.stderr.write(`numux: unhandled rejection: ${message}
3908
- `);
3909
3910
  app.shutdown().finally(() => {
3911
+ process.stderr.write(`numux: unhandled rejection: ${message}
3912
+ `);
3910
3913
  logWriter?.cleanup();
3911
3914
  process.exit(1);
3912
3915
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numux",
3
- "version": "2.7.0",
3
+ "version": "2.7.2",
4
4
  "description": "Terminal multiplexer with dependency orchestration",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -43,13 +43,16 @@
43
43
  "dist/"
44
44
  ],
45
45
  "dependencies": {
46
- "@opentui/core": "^0.1.81",
47
- "ghostty-opentui": "^1.4.3"
46
+ "@opentui/core": "^0.1.88",
47
+ "ghostty-opentui": "^1.4.7"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@biomejs/biome": "^2.4.4",
51
51
  "@commitlint/cli": "^20.4.2",
52
52
  "@commitlint/config-conventional": "^20.4.2",
53
53
  "@types/bun": "^1.3.9"
54
+ },
55
+ "patchedDependencies": {
56
+ "ghostty-opentui@1.4.7": "patches/ghostty-opentui@1.4.7.patch"
54
57
  }
55
58
  }