@wong2kim/wmux 1.1.0 → 1.1.1
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/README.md +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Inspired by [cmux](https://github.com/manaflow-ai/cmux) (macOS), wmux brings the
|
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
17
|
-
**Download:** [wmux-1.
|
|
17
|
+
**Download:** [wmux-1.1.1 Setup.exe](https://github.com/openwong2kim/wmux/releases/latest)
|
|
18
18
|
|
|
19
19
|
Or build from source:
|
|
20
20
|
```powershell
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wong2kim/wmux",
|
|
3
3
|
"productName": "wmux",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"description": "Windows terminal multiplexer with MCP server for AI agents - run multiple CLI sessions in parallel, control via Claude Code and other AI tools",
|
|
6
6
|
"main": ".vite/build/index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"forge-publish": "electron-forge publish",
|
|
13
13
|
"lint": "eslint --ext .ts,.tsx .",
|
|
14
14
|
"build:cli": "tsc -p tsconfig.cli.json",
|
|
15
|
-
"build:mcp": "tsc -p tsconfig.mcp.json",
|
|
15
|
+
"build:mcp": "tsc -p tsconfig.mcp.json && esbuild dist/mcp/mcp/index.js --bundle --platform=node --outfile=dist/mcp-bundle/index.js --external:electron",
|
|
16
16
|
"cli": "node dist/cli/cli/index.js",
|
|
17
17
|
"mcp": "node dist/mcp/mcp/index.js",
|
|
18
18
|
"prepublishOnly": "npm run build:cli && npm run build:mcp"
|