codeharness 0.32.0 → 0.32.1
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.32.
|
|
2898
|
+
var HARNESS_VERSION = true ? "0.32.1" : "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-FW3FP7O7.js";
|
|
44
44
|
|
|
45
45
|
// src/index.ts
|
|
46
46
|
import { Command } from "commander";
|
|
@@ -3219,7 +3219,7 @@ function loadWorkItems(sprintStatusPath, issuesPath2) {
|
|
|
3219
3219
|
for (const [key, status] of Object.entries(devStatus)) {
|
|
3220
3220
|
if (key.startsWith("epic-")) continue;
|
|
3221
3221
|
if (key.endsWith("-retrospective")) continue;
|
|
3222
|
-
if (status === "backlog" || status === "ready-for-dev") {
|
|
3222
|
+
if (status === "backlog" || status === "ready-for-dev" || status === "in-progress") {
|
|
3223
3223
|
items.push({ key, source: "sprint" });
|
|
3224
3224
|
}
|
|
3225
3225
|
}
|
|
@@ -3248,7 +3248,7 @@ function loadWorkItems(sprintStatusPath, issuesPath2) {
|
|
|
3248
3248
|
for (const issue of issuesList) {
|
|
3249
3249
|
if (issue && typeof issue === "object") {
|
|
3250
3250
|
const status = issue.status;
|
|
3251
|
-
if (status === "backlog" || status === "ready-for-dev") {
|
|
3251
|
+
if (status === "backlog" || status === "ready-for-dev" || status === "in-progress") {
|
|
3252
3252
|
items.push({
|
|
3253
3253
|
key: issue.id,
|
|
3254
3254
|
title: issue.title,
|
|
@@ -11135,7 +11135,7 @@ function registerTeardownCommand(program) {
|
|
|
11135
11135
|
} else if (otlpMode === "remote-routed") {
|
|
11136
11136
|
if (!options.keepDocker) {
|
|
11137
11137
|
try {
|
|
11138
|
-
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-
|
|
11138
|
+
const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-NV4Q52NL.js");
|
|
11139
11139
|
stopCollectorOnly2();
|
|
11140
11140
|
result.docker.stopped = true;
|
|
11141
11141
|
if (!isJson) {
|
|
@@ -11167,7 +11167,7 @@ function registerTeardownCommand(program) {
|
|
|
11167
11167
|
info("Shared stack: kept running (other projects may use it)");
|
|
11168
11168
|
}
|
|
11169
11169
|
} else if (isLegacyStack) {
|
|
11170
|
-
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-
|
|
11170
|
+
const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-NV4Q52NL.js");
|
|
11171
11171
|
let stackRunning = false;
|
|
11172
11172
|
try {
|
|
11173
11173
|
stackRunning = isStackRunning2(composeFile);
|
|
@@ -14154,7 +14154,7 @@ function registerDriversCommand(program) {
|
|
|
14154
14154
|
}
|
|
14155
14155
|
|
|
14156
14156
|
// src/index.ts
|
|
14157
|
-
var VERSION = true ? "0.32.
|
|
14157
|
+
var VERSION = true ? "0.32.1" : "0.0.0-dev";
|
|
14158
14158
|
function createProgram() {
|
|
14159
14159
|
const program = new Command();
|
|
14160
14160
|
program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
|