staklink 0.5.7 → 0.5.8

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.
@@ -53319,6 +53319,12 @@ var Runner = class {
53319
53319
  async executeCommand(command, cwd = this.cwd, description = "Command", appEnv, timeoutMs = 20 * 60 * 1e3) {
53320
53320
  this.log_cb(`\u26A1 ${description}: ${command}`);
53321
53321
  this.log_cb(`\u{1F4C1} Working directory: ${cwd}`);
53322
+ if (appEnv && Object.keys(appEnv).length > 0) {
53323
+ const keys = Object.keys(appEnv);
53324
+ this.log_cb(`App env vars injected (${keys.length}): [${keys.join(", ")}]`);
53325
+ } else {
53326
+ this.log_cb(`No app env vars provided for this command`);
53327
+ }
53322
53328
  return new Promise((resolve3, reject) => {
53323
53329
  const child = proc2.spawn("sh", ["-c", command], {
53324
53330
  cwd,
@@ -61003,7 +61009,7 @@ var SSEManager = class {
61003
61009
  var sseManager = new SSEManager();
61004
61010
 
61005
61011
  // src/proxy/version.ts
61006
- var VERSION = "0.5.7";
61012
+ var VERSION = "0.5.8";
61007
61013
 
61008
61014
  // node_modules/uuid/dist/esm/stringify.js
61009
61015
  var byteToHex = [];
@@ -4527,6 +4527,12 @@ var Runner = class {
4527
4527
  async executeCommand(command, cwd = this.cwd, description = "Command", appEnv, timeoutMs = 20 * 60 * 1e3) {
4528
4528
  this.log_cb(`\u26A1 ${description}: ${command}`);
4529
4529
  this.log_cb(`\u{1F4C1} Working directory: ${cwd}`);
4530
+ if (appEnv && Object.keys(appEnv).length > 0) {
4531
+ const keys = Object.keys(appEnv);
4532
+ this.log_cb(`App env vars injected (${keys.length}): [${keys.join(", ")}]`);
4533
+ } else {
4534
+ this.log_cb(`No app env vars provided for this command`);
4535
+ }
4530
4536
  return new Promise((resolve, reject) => {
4531
4537
  const child = proc2.spawn("sh", ["-c", command], {
4532
4538
  cwd,
@@ -11016,7 +11022,7 @@ var glob = Object.assign(glob_, {
11016
11022
  glob.glob = glob;
11017
11023
 
11018
11024
  // src/proxy/version.ts
11019
- var VERSION = "0.5.7";
11025
+ var VERSION = "0.5.8";
11020
11026
 
11021
11027
  // src/deps.ts
11022
11028
  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.5.7",
5
+ "version": "0.5.8",
6
6
  "type": "module",
7
7
  "publisher": "stakwork",
8
8
  "engines": {