agent-tail-core 0.3.3 → 0.3.4
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/cli.mjs
CHANGED
|
@@ -224,7 +224,10 @@ function cmd_wrap(project_root, name, command, options = DEFAULT_CLI_OPTIONS) {
|
|
|
224
224
|
"pipe",
|
|
225
225
|
"pipe"
|
|
226
226
|
],
|
|
227
|
-
env: {
|
|
227
|
+
env: {
|
|
228
|
+
...process.env,
|
|
229
|
+
[SESSION_ENV_VAR]: session_dir
|
|
230
|
+
},
|
|
228
231
|
shell: true
|
|
229
232
|
});
|
|
230
233
|
child.stdout?.on("data", (chunk) => {
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as resolve_session_dir, c as LogManager, i as parse_service_configs, l as SESSION_ENV_VAR, n as cmd_run, o as DEFAULT_OPTIONS, r as cmd_wrap, s as resolve_options, t as cmd_init, u as should_exclude } from "./commands-
|
|
1
|
+
import { a as resolve_session_dir, c as LogManager, i as parse_service_configs, l as SESSION_ENV_VAR, n as cmd_run, o as DEFAULT_OPTIONS, r as cmd_wrap, s as resolve_options, t as cmd_init, u as should_exclude } from "./commands-B0zBKBEa.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/formatter.ts
|
|
4
4
|
function format_log_line(entry) {
|