cmux 0.6.0 → 0.7.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/package.json +6 -6
- package/bin/cmux +0 -23
- package/lib/cmux +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Cloud sandboxes for development - spawn isolated dev environments instantly",
|
|
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.
|
|
35
|
-
"cmux-darwin-x64": "0.
|
|
36
|
-
"cmux-linux-arm64": "0.
|
|
37
|
-
"cmux-linux-x64": "0.
|
|
38
|
-
"cmux-win32-x64": "0.
|
|
34
|
+
"cmux-darwin-arm64": "0.7.1",
|
|
35
|
+
"cmux-darwin-x64": "0.7.1",
|
|
36
|
+
"cmux-linux-arm64": "0.7.1",
|
|
37
|
+
"cmux-linux-x64": "0.7.1",
|
|
38
|
+
"cmux-win32-x64": "0.7.1"
|
|
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
|
package/lib/cmux
DELETED
|
Binary file
|