sparkecoder 0.1.6 → 0.1.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.
- package/dist/agent/index.js +2 -1
- package/dist/agent/index.js.map +1 -1
- package/dist/cli.js +130 -35
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +125 -34
- package/dist/index.js.map +1 -1
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +125 -34
- package/dist/server/index.js.map +1 -1
- package/dist/tools/index.js +2 -1
- package/dist/tools/index.js.map +1 -1
- package/package.json +4 -1
package/dist/agent/index.js
CHANGED
|
@@ -694,7 +694,8 @@ async function runBackground(command, workingDirectory, options) {
|
|
|
694
694
|
cwd: workingDirectory,
|
|
695
695
|
createdAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
696
696
|
sessionId: options.sessionId,
|
|
697
|
-
background: true
|
|
697
|
+
background: true,
|
|
698
|
+
name: options.name
|
|
698
699
|
}, workingDirectory);
|
|
699
700
|
const logFile = join2(logDir, "output.log");
|
|
700
701
|
const wrappedCommand = `(${command}) 2>&1 | tee -a ${shellEscape(logFile)}`;
|