cmux 0.7.6 → 0.7.7

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 (3) hide show
  1. package/lib/cmux +0 -0
  2. package/package.json +6 -6
  3. package/bin/cmux +0 -23
package/lib/cmux CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmux",
3
- "version": "0.7.6",
3
+ "version": "0.7.7",
4
4
  "description": "CLI tool to instantly spin up cloud VMs preloaded with Chrome, VNC, SSH, and rsync",
5
5
  "keywords": [
6
6
  "cli",
@@ -31,11 +31,11 @@
31
31
  "postinstall": "node lib/postinstall.js"
32
32
  },
33
33
  "optionalDependencies": {
34
- "cmux-darwin-arm64": "0.7.6",
35
- "cmux-darwin-x64": "0.7.6",
36
- "cmux-linux-arm64": "0.7.6",
37
- "cmux-linux-x64": "0.7.6",
38
- "cmux-win32-x64": "0.7.6"
34
+ "cmux-darwin-arm64": "0.7.7",
35
+ "cmux-darwin-x64": "0.7.7",
36
+ "cmux-linux-arm64": "0.7.7",
37
+ "cmux-linux-x64": "0.7.7",
38
+ "cmux-win32-x64": "0.7.7"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=16"
package/bin/cmux DELETED
@@ -1,23 +0,0 @@
1
- #!/bin/sh
2
- # Wrapper script - actual binary is copied by postinstall
3
- # Resolve symlinks to find the real script location
4
- SCRIPT="$0"
5
- while [ -L "$SCRIPT" ]; do
6
- DIR="$(dirname "$SCRIPT")"
7
- SCRIPT="$(readlink "$SCRIPT")"
8
- # Handle relative symlinks
9
- case "$SCRIPT" in
10
- /*) ;;
11
- *) SCRIPT="$DIR/$SCRIPT" ;;
12
- esac
13
- done
14
- DIR="$(cd "$(dirname "$SCRIPT")" && pwd)"
15
-
16
- if [ -f "$DIR/cmux.bin" ]; then
17
- exec "$DIR/cmux.bin" "$@"
18
- elif [ -f "$DIR/../lib/cmux" ]; then
19
- exec "$DIR/../lib/cmux" "$@"
20
- else
21
- echo "cmux: Binary not found. Try reinstalling: npm install -g cmux"
22
- exit 1
23
- fi