codeharness 0.31.6 → 0.31.7
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.
|
@@ -2895,7 +2895,7 @@ function generateDockerfileTemplate(projectDir, stackOrDetections) {
|
|
|
2895
2895
|
}
|
|
2896
2896
|
|
|
2897
2897
|
// src/modules/infra/init-project.ts
|
|
2898
|
-
var HARNESS_VERSION = true ? "0.31.
|
|
2898
|
+
var HARNESS_VERSION = true ? "0.31.7" : "0.0.0-dev";
|
|
2899
2899
|
function failResult(opts, error) {
|
|
2900
2900
|
return {
|
|
2901
2901
|
status: "fail",
|
package/dist/index.js
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
validateDockerfile,
|
|
41
41
|
warn,
|
|
42
42
|
writeState
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-A5DXO37U.js";
|
|
44
44
|
|
|
45
45
|
// src/index.ts
|
|
46
46
|
import { Command } from "commander";
|
|
@@ -5551,7 +5551,8 @@ function App({ state, onCycleLane, onQuit }) {
|
|
|
5551
5551
|
}, { isActive: typeof process.stdin.setRawMode === "function" });
|
|
5552
5552
|
const activeLaneCount = state.laneCount ?? 0;
|
|
5553
5553
|
const termRows = process.stdout.rows || 24;
|
|
5554
|
-
const
|
|
5554
|
+
const staticLines = state.messages.length;
|
|
5555
|
+
const fixedHeight = 10 + staticLines + 2;
|
|
5555
5556
|
const availableHeight = Math.max(3, termRows - fixedHeight);
|
|
5556
5557
|
return /* @__PURE__ */ jsxs7(Box7, { flexDirection: "column", children: [
|
|
5557
5558
|
/* @__PURE__ */ jsx7(Static, { items: state.messages, children: (msg, i) => /* @__PURE__ */ jsx7(StoryMessageLine, { msg }, i) }),
|
|
@@ -11297,7 +11298,7 @@ function registerTeardownCommand(program) {
|
|
|
11297
11298
|
} else if (otlpMode === "remote-routed") {
|
|
11298
11299
|
if (!options.keepDocker) {
|
|
11299
11300
|
try {
|
|
11300
|
-
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-
|
|
11301
|
+
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-NMEOPB6R.js");
|
|
11301
11302
|
stopCollectorOnly2();
|
|
11302
11303
|
result.docker.stopped = true;
|
|
11303
11304
|
if (!isJson) {
|
|
@@ -11329,7 +11330,7 @@ function registerTeardownCommand(program) {
|
|
|
11329
11330
|
info("Shared stack: kept running (other projects may use it)");
|
|
11330
11331
|
}
|
|
11331
11332
|
} else if (isLegacyStack) {
|
|
11332
|
-
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-
|
|
11333
|
+
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-NMEOPB6R.js");
|
|
11333
11334
|
let stackRunning = false;
|
|
11334
11335
|
try {
|
|
11335
11336
|
stackRunning = isStackRunning2(composeFile);
|
|
@@ -14316,7 +14317,7 @@ function registerDriversCommand(program) {
|
|
|
14316
14317
|
}
|
|
14317
14318
|
|
|
14318
14319
|
// src/index.ts
|
|
14319
|
-
var VERSION = true ? "0.31.
|
|
14320
|
+
var VERSION = true ? "0.31.7" : "0.0.0-dev";
|
|
14320
14321
|
function createProgram() {
|
|
14321
14322
|
const program = new Command();
|
|
14322
14323
|
program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
|