codeharness 0.36.7 → 0.36.8
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.36.
|
|
2898
|
+
var HARNESS_VERSION = true ? "0.36.8" : "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-NNQJXW4B.js";
|
|
44
44
|
|
|
45
45
|
// src/index.ts
|
|
46
46
|
import { Command } from "commander";
|
|
@@ -11186,7 +11186,7 @@ function registerTeardownCommand(program) {
|
|
|
11186
11186
|
} else if (otlpMode === "remote-routed") {
|
|
11187
11187
|
if (!options.keepDocker) {
|
|
11188
11188
|
try {
|
|
11189
|
-
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-
|
|
11189
|
+
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-BU4EW3ET.js");
|
|
11190
11190
|
stopCollectorOnly2();
|
|
11191
11191
|
result.docker.stopped = true;
|
|
11192
11192
|
if (!isJson) {
|
|
@@ -11218,7 +11218,7 @@ function registerTeardownCommand(program) {
|
|
|
11218
11218
|
info("Shared stack: kept running (other projects may use it)");
|
|
11219
11219
|
}
|
|
11220
11220
|
} else if (isLegacyStack) {
|
|
11221
|
-
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-
|
|
11221
|
+
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-BU4EW3ET.js");
|
|
11222
11222
|
let stackRunning = false;
|
|
11223
11223
|
try {
|
|
11224
11224
|
stackRunning = isStackRunning2(composeFile);
|
|
@@ -14203,7 +14203,7 @@ function registerDriversCommand(program) {
|
|
|
14203
14203
|
}
|
|
14204
14204
|
|
|
14205
14205
|
// src/index.ts
|
|
14206
|
-
var VERSION = true ? "0.36.
|
|
14206
|
+
var VERSION = true ? "0.36.8" : "0.0.0-dev";
|
|
14207
14207
|
function createProgram() {
|
|
14208
14208
|
const program = new Command();
|
|
14209
14209
|
program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
|
package/package.json
CHANGED