codeharness 0.28.1 → 0.28.2
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.
|
@@ -1957,10 +1957,9 @@ var DEPENDENCY_REGISTRY = [
|
|
|
1957
1957
|
name: "showboat",
|
|
1958
1958
|
displayName: "Showboat",
|
|
1959
1959
|
installCommands: [
|
|
1960
|
-
{ cmd: "
|
|
1961
|
-
{ cmd: "
|
|
1962
|
-
{ cmd: "pipx", args: ["install", "showboat"] }
|
|
1963
|
-
{ cmd: "brew", args: ["install", "showboat"] }
|
|
1960
|
+
{ cmd: "npm", args: ["install", "-g", "showboat"] },
|
|
1961
|
+
{ cmd: "brew", args: ["install", "showboat"] },
|
|
1962
|
+
{ cmd: "pipx", args: ["install", "showboat"] }
|
|
1964
1963
|
],
|
|
1965
1964
|
checkCommand: { cmd: "showboat", args: ["--version"] },
|
|
1966
1965
|
critical: false
|
|
@@ -2896,7 +2895,7 @@ function generateDockerfileTemplate(projectDir, stackOrDetections) {
|
|
|
2896
2895
|
}
|
|
2897
2896
|
|
|
2898
2897
|
// src/modules/infra/init-project.ts
|
|
2899
|
-
var HARNESS_VERSION = true ? "0.28.
|
|
2898
|
+
var HARNESS_VERSION = true ? "0.28.2" : "0.0.0-dev";
|
|
2900
2899
|
function failResult(opts, error) {
|
|
2901
2900
|
return {
|
|
2902
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-WGRLLVWV.js";
|
|
44
44
|
|
|
45
45
|
// src/index.ts
|
|
46
46
|
import { Command } from "commander";
|
|
@@ -9907,7 +9907,7 @@ function registerTeardownCommand(program) {
|
|
|
9907
9907
|
} else if (otlpMode === "remote-routed") {
|
|
9908
9908
|
if (!options.keepDocker) {
|
|
9909
9909
|
try {
|
|
9910
|
-
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-
|
|
9910
|
+
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-77PSA3RN.js");
|
|
9911
9911
|
stopCollectorOnly2();
|
|
9912
9912
|
result.docker.stopped = true;
|
|
9913
9913
|
if (!isJson) {
|
|
@@ -9939,7 +9939,7 @@ function registerTeardownCommand(program) {
|
|
|
9939
9939
|
info("Shared stack: kept running (other projects may use it)");
|
|
9940
9940
|
}
|
|
9941
9941
|
} else if (isLegacyStack) {
|
|
9942
|
-
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-
|
|
9942
|
+
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-77PSA3RN.js");
|
|
9943
9943
|
let stackRunning = false;
|
|
9944
9944
|
try {
|
|
9945
9945
|
stackRunning = isStackRunning2(composeFile);
|
|
@@ -12817,7 +12817,7 @@ function registerDriversCommand(program) {
|
|
|
12817
12817
|
}
|
|
12818
12818
|
|
|
12819
12819
|
// src/index.ts
|
|
12820
|
-
var VERSION = true ? "0.28.
|
|
12820
|
+
var VERSION = true ? "0.28.2" : "0.0.0-dev";
|
|
12821
12821
|
function createProgram() {
|
|
12822
12822
|
const program = new Command();
|
|
12823
12823
|
program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
|
|
@@ -12846,6 +12846,7 @@ function createProgram() {
|
|
|
12846
12846
|
registerStatsCommand(program);
|
|
12847
12847
|
registerIssueCommand(program);
|
|
12848
12848
|
registerDriversCommand(program);
|
|
12849
|
+
ensureDriversRegistered();
|
|
12849
12850
|
return program;
|
|
12850
12851
|
}
|
|
12851
12852
|
if (!process.env["VITEST"]) {
|