staklink 0.3.83 → 0.3.84

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.
@@ -24060,7 +24060,7 @@ var require_token_io = __commonJS({
24060
24060
  });
24061
24061
  module2.exports = __toCommonJS(token_io_exports);
24062
24062
  var import_path4 = __toESM2(require("path"));
24063
- var import_fs4 = __toESM2(require("fs"));
24063
+ var import_fs5 = __toESM2(require("fs"));
24064
24064
  var import_os = __toESM2(require("os"));
24065
24065
  var import_token_error = require_token_error();
24066
24066
  function findRootDir() {
@@ -24068,7 +24068,7 @@ var require_token_io = __commonJS({
24068
24068
  let dir = process.cwd();
24069
24069
  while (dir !== import_path4.default.dirname(dir)) {
24070
24070
  const pkgPath = import_path4.default.join(dir, ".vercel");
24071
- if (import_fs4.default.existsSync(pkgPath)) {
24071
+ if (import_fs5.default.existsSync(pkgPath)) {
24072
24072
  return dir;
24073
24073
  }
24074
24074
  dir = import_path4.default.dirname(dir);
@@ -26199,7 +26199,7 @@ var require_token_io2 = __commonJS({
26199
26199
  });
26200
26200
  module2.exports = __toCommonJS(token_io_exports);
26201
26201
  var import_path4 = __toESM2(require("path"));
26202
- var import_fs4 = __toESM2(require("fs"));
26202
+ var import_fs5 = __toESM2(require("fs"));
26203
26203
  var import_os = __toESM2(require("os"));
26204
26204
  var import_token_error = require_token_error2();
26205
26205
  function findRootDir() {
@@ -26207,7 +26207,7 @@ var require_token_io2 = __commonJS({
26207
26207
  let dir = process.cwd();
26208
26208
  while (dir !== import_path4.default.dirname(dir)) {
26209
26209
  const pkgPath = import_path4.default.join(dir, ".vercel");
26210
- if (import_fs4.default.existsSync(pkgPath)) {
26210
+ if (import_fs5.default.existsSync(pkgPath)) {
26211
26211
  return dir;
26212
26212
  }
26213
26213
  dir = import_path4.default.dirname(dir);
@@ -61213,7 +61213,7 @@ var SSEManager = class {
61213
61213
  var sseManager = new SSEManager();
61214
61214
 
61215
61215
  // src/proxy/version.ts
61216
- var VERSION = "0.3.83";
61216
+ var VERSION = "0.3.84";
61217
61217
 
61218
61218
  // node_modules/uuid/dist/esm/stringify.js
61219
61219
  var byteToHex = [];
@@ -133163,6 +133163,7 @@ var createAsyncAgentHandler = (getParams, transformResult) => {
133163
133163
 
133164
133164
  // src/proxy/server.ts
133165
133165
  var import_promises3 = __toESM(require("fs/promises"), 1);
133166
+ var import_fs4 = require("fs");
133166
133167
 
133167
133168
  // src/proxy/gitleaks.ts
133168
133169
  var import_child_process4 = require("child_process");
@@ -135237,6 +135238,11 @@ async function startProxyServer() {
135237
135238
  await repo.resetHardOriginWithCredentials(r.base_branch);
135238
135239
  await repo.clean();
135239
135240
  }
135241
+ const leetboxPath = "/workspaces/leetbox";
135242
+ if ((0, import_fs4.existsSync)(leetboxPath)) {
135243
+ log(`=> LATEST: Removing ${leetboxPath}...`);
135244
+ (0, import_fs4.rmSync)(leetboxPath, { recursive: true, force: true });
135245
+ }
135240
135246
  log("=> LATEST: Running install...");
135241
135247
  let config4 = await findAndLoadPm2Config(workspaceRoot2, log);
135242
135248
  const installResults = await runner.runInstallCommands(config4);
@@ -10967,7 +10967,7 @@ var glob = Object.assign(glob_, {
10967
10967
  glob.glob = glob;
10968
10968
 
10969
10969
  // src/proxy/version.ts
10970
- var VERSION = "0.3.83";
10970
+ var VERSION = "0.3.84";
10971
10971
 
10972
10972
  // src/goose.ts
10973
10973
  var import_child_process = require("child_process");
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "staklink",
3
3
  "displayName": "staklink",
4
4
  "description": "staklink process manager",
5
- "version": "0.3.83",
5
+ "version": "0.3.84",
6
6
  "type": "module",
7
7
  "publisher": "stakwork",
8
8
  "engines": {