openmux 0.3.0 → 0.3.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/README.md +15 -0
  2. package/package.json +4 -12
package/README.md CHANGED
@@ -30,6 +30,21 @@ A terminal multiplexer with master-stack layout (Zellij-style), built with:
30
30
 
31
31
  ## Installation
32
32
 
33
+ > ⚠️ **Important Update Note for v0.3.0 Users**
34
+ >
35
+ > openmux v0.3.0 contains a quirky bug that prevents `openmux update` from working correctly.
36
+ > If you're on v0.3.0, please update manually using one of the following methods:
37
+ >
38
+ > ```bash
39
+ > # Option 1: Reinstall via install script
40
+ > curl -fsSL https://raw.githubusercontent.com/monotykamary/openmux/main/scripts/install.sh | bash
41
+ >
42
+ > # Option 2: Update via package manager
43
+ > bun update -g openmux
44
+ > # or
45
+ > npm update -g openmux
46
+ > ```
47
+
33
48
  ### Quick Install (curl)
34
49
 
35
50
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
@@ -20,7 +20,6 @@
20
20
  "build:release": "./scripts/build.sh --release",
21
21
  "install:local": "./scripts/build.sh --install",
22
22
  "update:submodules": "./scripts/update-submodules.sh",
23
- "prepare": "effect-language-service patch",
24
23
  "test": "bun test && (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
24
  "test:ts": "bun test",
26
25
  "test:pty": "cd native/zig-pty && zig build test --summary all",
@@ -30,9 +29,7 @@
30
29
  "test:ghostty-vt": "bun run test:zig-ghostty-wrapper",
31
30
  "test:watch": "bun test --watch",
32
31
  "check:circular": "bunx madge --circular --extensions ts,tsx src/",
33
- "lint:effect": "effect-language-service diagnostics --format pretty --project ./tsconfig.json",
34
- "lint:ts": "eslint src",
35
- "lint": "bun run lint:effect && bun run lint:ts",
32
+ "lint": "eslint src",
36
33
  "config:doc": "bun scripts/generate-config-doc.ts",
37
34
  "release": "standard-version",
38
35
  "release:minor": "standard-version --release-as minor",
@@ -65,26 +62,21 @@
65
62
  "bun": ">=1.0.0"
66
63
  },
67
64
  "devDependencies": {
68
- "@effect/eslint-plugin": "^0.3.2",
69
- "@effect/language-service": "^0.60.0",
70
65
  "@types/bun": "latest",
71
66
  "@types/node": "^25.3.0",
72
67
  "@typescript-eslint/eslint-plugin": "^8.56.0",
73
68
  "@typescript-eslint/parser": "^8.56.0",
74
- "eslint": "^9.39.2",
69
+ "eslint": "^10.0.1",
75
70
  "standard-version": "^9.5.0"
76
71
  },
77
72
  "peerDependencies": {
78
73
  "typescript": "^5.9.3"
79
74
  },
80
75
  "dependencies": {
81
- "@effect/cli": "^0.72.1",
82
- "@effect/platform": "^0.93.8",
83
76
  "@iarna/toml": "^3.0.0",
84
77
  "@opentui/core": "^0.1.80",
85
78
  "@opentui/solid": "^0.1.80",
86
- "effect": "^3.19.18",
87
- "errore": "^0.12.0",
79
+ "errore": "^0.13.0",
88
80
  "solid-js": "^1.9.11",
89
81
  "zod": "^4.3.6"
90
82
  }