codeharness 0.35.2 → 0.35.3
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.35.
|
|
2898
|
+
var HARNESS_VERSION = true ? "0.35.3" : "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-7EZ26ISH.js";
|
|
44
44
|
|
|
45
45
|
// src/index.ts
|
|
46
46
|
import { Command } from "commander";
|
|
@@ -3971,6 +3971,11 @@ async function executeWorkflow(config) {
|
|
|
3971
3971
|
const storyFlowTasks = /* @__PURE__ */ new Set();
|
|
3972
3972
|
for (const step of config.workflow.storyFlow) {
|
|
3973
3973
|
if (typeof step === "string") storyFlowTasks.add(step);
|
|
3974
|
+
if (typeof step === "object" && "loop" in step) {
|
|
3975
|
+
for (const loopTask of step.loop) {
|
|
3976
|
+
storyFlowTasks.add(loopTask);
|
|
3977
|
+
}
|
|
3978
|
+
}
|
|
3974
3979
|
}
|
|
3975
3980
|
const epicGroups = /* @__PURE__ */ new Map();
|
|
3976
3981
|
for (const item of workItems) {
|
|
@@ -11199,7 +11204,7 @@ function registerTeardownCommand(program) {
|
|
|
11199
11204
|
} else if (otlpMode === "remote-routed") {
|
|
11200
11205
|
if (!options.keepDocker) {
|
|
11201
11206
|
try {
|
|
11202
|
-
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-
|
|
11207
|
+
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-7Q74W5YH.js");
|
|
11203
11208
|
stopCollectorOnly2();
|
|
11204
11209
|
result.docker.stopped = true;
|
|
11205
11210
|
if (!isJson) {
|
|
@@ -11231,7 +11236,7 @@ function registerTeardownCommand(program) {
|
|
|
11231
11236
|
info("Shared stack: kept running (other projects may use it)");
|
|
11232
11237
|
}
|
|
11233
11238
|
} else if (isLegacyStack) {
|
|
11234
|
-
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-
|
|
11239
|
+
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-7Q74W5YH.js");
|
|
11235
11240
|
let stackRunning = false;
|
|
11236
11241
|
try {
|
|
11237
11242
|
stackRunning = isStackRunning2(composeFile);
|
|
@@ -14218,7 +14223,7 @@ function registerDriversCommand(program) {
|
|
|
14218
14223
|
}
|
|
14219
14224
|
|
|
14220
14225
|
// src/index.ts
|
|
14221
|
-
var VERSION = true ? "0.35.
|
|
14226
|
+
var VERSION = true ? "0.35.3" : "0.0.0-dev";
|
|
14222
14227
|
function createProgram() {
|
|
14223
14228
|
const program = new Command();
|
|
14224
14229
|
program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
|