bitfab-cli 0.2.86 → 0.2.87

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/dist/index.js +9 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9850,8 +9850,8 @@ async function pingSocket(socketPath) {
9850
9850
  socket.write('{"cmd":"ping"}\n');
9851
9851
  });
9852
9852
  let buffer = "";
9853
- socket.on("data", (chunk) => {
9854
- buffer += chunk.toString();
9853
+ socket.on("data", (chunk2) => {
9854
+ buffer += chunk2.toString();
9855
9855
  if (buffer.includes("\n")) {
9856
9856
  clearTimeout(timeout);
9857
9857
  socket.destroy();
@@ -10010,8 +10010,8 @@ var DaemonClient = class {
10010
10010
  this.socket = socket;
10011
10011
  resolve();
10012
10012
  });
10013
- socket.on("data", (chunk) => {
10014
- this.buffer += chunk.toString();
10013
+ socket.on("data", (chunk2) => {
10014
+ this.buffer += chunk2.toString();
10015
10015
  this.drain();
10016
10016
  });
10017
10017
  socket.on("error", (err) => {
@@ -24550,6 +24550,11 @@ var inputFileSchema = external_exports.object({
24550
24550
  // ../bitfab-plugin-lib/dist/commands/pushActivity.js
24551
24551
  import { spawn as spawn3 } from "child_process";
24552
24552
 
24553
+ // ../bitfab-plugin-lib/dist/commands/readTracesBatched.js
24554
+ import { writeFileSync } from "fs";
24555
+ import { tmpdir } from "os";
24556
+ import { join } from "path";
24557
+
24553
24558
  // ../bitfab-plugin-lib/dist/activePreviewSession.js
24554
24559
  import fs12 from "fs";
24555
24560
  import os11 from "os";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bitfab-cli",
3
- "version": "0.2.86",
3
+ "version": "0.2.87",
4
4
  "description": "Install and configure the Bitfab plugin in Claude Code, Codex, or Cursor.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",