lalph 0.1.73 → 0.1.74
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 +2 -2
- package/package.json +1 -1
- package/src/domain/CliAgent.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -60687,7 +60687,7 @@ const claude = new CliAgent({
|
|
|
60687
60687
|
stdout: outputMode,
|
|
60688
60688
|
stderr: outputMode,
|
|
60689
60689
|
stdin: "inherit"
|
|
60690
|
-
})`claude --dangerously-skip-permissions -p ${`@${prdFilePath}
|
|
60690
|
+
})`claude --dangerously-skip-permissions --output-format stream-json -p ${`@${prdFilePath}
|
|
60691
60691
|
|
|
60692
60692
|
${prompt}`}`,
|
|
60693
60693
|
commandPlan: ({ outputMode, prompt, prdFilePath }) => make$21({
|
|
@@ -142464,7 +142464,7 @@ const commandSource = make$27("source").pipe(withDescription("Select the issue s
|
|
|
142464
142464
|
|
|
142465
142465
|
//#endregion
|
|
142466
142466
|
//#region package.json
|
|
142467
|
-
var version = "0.1.
|
|
142467
|
+
var version = "0.1.74";
|
|
142468
142468
|
|
|
142469
142469
|
//#endregion
|
|
142470
142470
|
//#region src/cli.ts
|
package/package.json
CHANGED
package/src/domain/CliAgent.ts
CHANGED
|
@@ -48,7 +48,7 @@ const claude = new CliAgent({
|
|
|
48
48
|
stdout: outputMode,
|
|
49
49
|
stderr: outputMode,
|
|
50
50
|
stdin: "inherit",
|
|
51
|
-
})`claude --dangerously-skip-permissions -p ${`@${prdFilePath}
|
|
51
|
+
})`claude --dangerously-skip-permissions --output-format stream-json -p ${`@${prdFilePath}
|
|
52
52
|
|
|
53
53
|
${prompt}`}`,
|
|
54
54
|
commandPlan: ({ outputMode, prompt, prdFilePath }) =>
|