openmux 0.2.80 → 0.2.83

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 (1) hide show
  1. package/package.json +5 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.2.80",
3
+ "version": "0.2.83",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
@@ -21,11 +21,13 @@
21
21
  "install:local": "./scripts/build.sh --install",
22
22
  "update:submodules": "./scripts/update-submodules.sh",
23
23
  "prepare": "effect-language-service patch",
24
- "test": "vitest run && (cd native/zig-pty && zig build test --summary all) && (cd native/zig-git && zig build test --summary all) && ./scripts/test-ghostty-vt.sh",
24
+ "test": "vitest run && (cd native/zig-pty && zig build test --summary all) && (cd native/zig-git && zig build test --summary all) && bun run test:zig-ghostty-wrapper",
25
25
  "test:ts": "vitest run",
26
26
  "test:pty": "cd native/zig-pty && zig build test --summary all",
27
27
  "test:git": "cd native/zig-git && zig build test --summary all",
28
- "test:ghostty-vt": "./scripts/test-ghostty-vt.sh",
28
+ "test:zig-ghostty-wrapper": "./scripts/test-ghostty-vt.sh",
29
+ "test:ghostty-wrapper": "bun run test:zig-ghostty-wrapper",
30
+ "test:ghostty-vt": "bun run test:zig-ghostty-wrapper",
29
31
  "test:watch": "vitest",
30
32
  "check:circular": "bunx madge --circular --extensions ts,tsx src/",
31
33
  "lint:effect": "effect-language-service diagnostics --format pretty --project ./tsconfig.json",