@brimveyn/aimux 1.9.7 → 1.9.9

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/package.json +2 -2
  2. package/src/update.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux",
3
- "version": "1.9.7",
3
+ "version": "1.9.9",
4
4
  "description": "A terminal multiplexer for AI CLIs. Run Claude, Codex, OpenCode side-by-side with tabbed navigation, split panes, and persistent sessions.",
5
5
  "keywords": [
6
6
  "ai",
@@ -60,7 +60,7 @@
60
60
  "bump": "bun run scripts/bump.ts"
61
61
  },
62
62
  "dependencies": {
63
- "@brimveyn/aimux-config": "0.5.6",
63
+ "@brimveyn/aimux-config": "0.5.8",
64
64
  "@opentui/core": "^0.1.90",
65
65
  "@opentui/react": "^0.1.90",
66
66
  "@xterm/headless": "^6.0.0",
package/src/update.ts CHANGED
@@ -39,7 +39,8 @@ export async function runUpdate(): Promise<number> {
39
39
  })
40
40
  await remove.exited
41
41
 
42
- const install = Bun.spawn(['bun', 'install', '-g', `github:${REPO}#${latest}`], {
42
+ const version = latest.startsWith('v') ? latest.slice(1) : latest
43
+ const install = Bun.spawn(['bun', 'install', '-g', `@brimveyn/aimux@${version}`], {
43
44
  stderr: 'inherit',
44
45
  stdout: 'inherit',
45
46
  })