@neriros/ralphy 2.13.13 → 2.13.14
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/index.js +5 -4
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -70108,7 +70108,7 @@ function TaskLoop({ opts }) {
|
|
|
70108
70108
|
|
|
70109
70109
|
// apps/cli/src/components/AgentMode.tsx
|
|
70110
70110
|
var import_react57 = __toESM(require_react(), 1);
|
|
70111
|
-
import { join as join16 } from "path";
|
|
70111
|
+
import { join as join16, relative } from "path";
|
|
70112
70112
|
|
|
70113
70113
|
// apps/cli/src/agent/config.ts
|
|
70114
70114
|
import { join as join10 } from "path";
|
|
@@ -72963,7 +72963,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
72963
72963
|
}, undefined, false, undefined, this),
|
|
72964
72964
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
72965
72965
|
color: "blue",
|
|
72966
|
-
children: w.issueIdentifier
|
|
72966
|
+
children: `\x1B]8;;${w.issue.url}\x07${w.issueIdentifier}\x1B]8;;\x07`
|
|
72967
72967
|
}, undefined, false, undefined, this)
|
|
72968
72968
|
]
|
|
72969
72969
|
}, undefined, true, undefined, this),
|
|
@@ -72976,7 +72976,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
72976
72976
|
}, undefined, false, undefined, this),
|
|
72977
72977
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
72978
72978
|
color: "green",
|
|
72979
|
-
children: prLabel(prUrl)
|
|
72979
|
+
children: `\x1B]8;;${prUrl}\x07${prLabel(prUrl)}\x1B]8;;\x07`
|
|
72980
72980
|
}, undefined, false, undefined, this)
|
|
72981
72981
|
]
|
|
72982
72982
|
}, undefined, true, undefined, this)
|
|
@@ -73000,6 +73000,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73000
73000
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Box_default, {
|
|
73001
73001
|
gap: 3,
|
|
73002
73002
|
marginTop: 0,
|
|
73003
|
+
flexWrap: "wrap",
|
|
73003
73004
|
children: [
|
|
73004
73005
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Box_default, {
|
|
73005
73006
|
gap: 1,
|
|
@@ -73048,7 +73049,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73048
73049
|
}, undefined, false, undefined, this),
|
|
73049
73050
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73050
73051
|
dimColor: true,
|
|
73051
|
-
children: trunc(meta?.logFile
|
|
73052
|
+
children: trunc(meta?.logFile ? relative(process.cwd(), meta.logFile) : "\u2013", 40)
|
|
73052
73053
|
}, undefined, false, undefined, this)
|
|
73053
73054
|
]
|
|
73054
73055
|
}, undefined, true, undefined, this)
|
package/package.json
CHANGED