You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .mvx/config.json5
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@
47
47
48
48
build: {
49
49
description: "Build mvx binary with platform-optimized settings",
50
-
script: "go build -o mvx-binary . && echo 'Installing global development binary...' && mkdir -p ~/.mvx/dev && cp mvx-binary ~/.mvx/dev/mvx && chmod +x ~/.mvx/dev/mvx && echo '✅ Global development binary installed at ~/.mvx/dev/mvx' && echo ' All projects using mvxVersion=dev will now use this binary automatically'",
50
+
script: "go build -o mvx-dev . && echo 'Installing global development binary...' && mkdir -p ~/.mvx/dev && cp mvx-dev ~/.mvx/dev/mvx && chmod +x ~/.mvx/dev/mvx && echo '✅ Global development binary installed at ~/.mvx/dev/mvx' && echo ' All projects using mvxVersion=dev will now use this binary automatically'",
51
51
override: true
52
52
},
53
53
@@ -96,13 +96,7 @@
96
96
97
97
clean: {
98
98
description: "Clean build artifacts",
99
-
script: "rm -f mvx-binary && rm -rf dist/ && rm -f ~/.mvx/dev/mvx && echo '🧹 Cleaned local and global dev binaries'",
0 commit comments