capix-code 2.2.1 → 2.2.3

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 (2) hide show
  1. package/package.json +1 -1
  2. package/scripts/build.sh +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capix-code",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "Capix Code — decentralized AI coding agent with GPU marketplace",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
package/scripts/build.sh CHANGED
@@ -141,7 +141,7 @@ MCPWRAPPER
141
141
  # Install from the dedicated runtime manifest. The outer npm package has
142
142
  # platform selectors which do not belong inside the embedded runtime.
143
143
  (cd "$ARTIFACT/runtime" && npm install --omit=dev --ignore-scripts)
144
- (cd "$DIR/launcher" && cargo build --locked --release)
144
+ (cd "$DIR/launcher" && cargo build --release)
145
145
  cp "$DIR/launcher/target/release/capix-code$EXE_SUFFIX" "$ARTIFACT/bin/capix-code$EXE_SUFFIX"
146
146
  chmod 0755 "$ARTIFACT/bin/capix-code$EXE_SUFFIX"
147
147