Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"lockfileVersion": 1,
"workspaces": {
"": {
"name": "@coder/cmux",
"name": "mux",
"dependencies": {
"@ai-sdk/anthropic": "^2.0.29",
"@ai-sdk/openai": "^2.0.52",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@coder/cmux",
"name": "mux",
"version": "0.5.1",
"description": "cmux - coder multiplexer",
"author": "Coder",
"main": "dist/main.js",
"bin": {
"cmux": "dist/main.js"
"mux": "dist/main.js"
},
Comment on lines 1 to 9

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Removing cmux binary without alias breaks existing installs

Changing the bin entry from "cmux" to "mux" drops the cmux executable from the published package. Any user who upgrades from a previous version and runs cmux (as documented throughout the repo and used in downstream scripts) will now get command not found. Because the version remains 0.5.1, consumers will not expect a breaking CLI rename and there is no replacement alias to ease migration. Please keep cmux as an alias or bump the major version to indicate the breaking change.

Useful? React with 👍 / 👎.

"license": "AGPL-3.0-only",
"repository": {
Expand Down