vent-hq 0.4.2 → 0.4.4
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.
- package/dist/index.mjs +12 -6
- package/dist/package-HTZNLUEJ.mjs +51 -0
- package/dist/package-LQLI2UW5.mjs +51 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -494,14 +494,16 @@ function printSummary(testResults, runComplete, runId, jsonMode) {
|
|
|
494
494
|
process.stderr.write(dim(`Full details: vent status ${runId} --json`) + "\n");
|
|
495
495
|
}
|
|
496
496
|
function printError(message) {
|
|
497
|
-
|
|
498
|
-
|
|
497
|
+
const line = red(bold("error")) + ` ${message}
|
|
498
|
+
`;
|
|
499
|
+
process.stderr.write(line);
|
|
500
|
+
if (!isTTY) {
|
|
501
|
+
process.stdout.write(line);
|
|
502
|
+
}
|
|
499
503
|
}
|
|
500
504
|
function printInfo(message) {
|
|
501
|
-
|
|
502
|
-
process.stderr.write(blue("\u25B8") + ` ${message}
|
|
505
|
+
process.stderr.write(blue("\u25B8") + ` ${message}
|
|
503
506
|
`);
|
|
504
|
-
}
|
|
505
507
|
}
|
|
506
508
|
function printSuccess(message) {
|
|
507
509
|
process.stderr.write(green("\u2714") + ` ${message}
|
|
@@ -601,6 +603,7 @@ async function runCommand(args) {
|
|
|
601
603
|
return 2;
|
|
602
604
|
}
|
|
603
605
|
}
|
|
606
|
+
printInfo(`Streaming results for run ${run_id}\u2026`);
|
|
604
607
|
const abortController = new AbortController();
|
|
605
608
|
let exitCode = 0;
|
|
606
609
|
const testResults = [];
|
|
@@ -637,6 +640,9 @@ async function runCommand(args) {
|
|
|
637
640
|
}
|
|
638
641
|
if (runCompleteData && testResults.length > 0) {
|
|
639
642
|
printSummary(testResults, runCompleteData, run_id, args.json);
|
|
643
|
+
} else if (testResults.length === 0 && exitCode !== 2) {
|
|
644
|
+
process.stdout.write(`run_id: ${run_id} \u2014 no test results received
|
|
645
|
+
`);
|
|
640
646
|
}
|
|
641
647
|
return exitCode;
|
|
642
648
|
}
|
|
@@ -6267,7 +6273,7 @@ async function main() {
|
|
|
6267
6273
|
process.exit(0);
|
|
6268
6274
|
}
|
|
6269
6275
|
if (command === "--version" || command === "-v") {
|
|
6270
|
-
const pkg = await import("./package-
|
|
6276
|
+
const pkg = await import("./package-HTZNLUEJ.mjs");
|
|
6271
6277
|
process.stdout.write(`vent-hq ${pkg.default.version}
|
|
6272
6278
|
`);
|
|
6273
6279
|
process.exit(0);
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "./chunk-U4M3XDTH.mjs";
|
|
3
|
+
|
|
4
|
+
// package.json
|
|
5
|
+
var package_default = {
|
|
6
|
+
name: "vent-hq",
|
|
7
|
+
version: "0.4.4",
|
|
8
|
+
type: "module",
|
|
9
|
+
description: "Vent CLI \u2014 CI/CD for voice AI agents",
|
|
10
|
+
bin: {
|
|
11
|
+
"vent-hq": "dist/index.mjs"
|
|
12
|
+
},
|
|
13
|
+
files: [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
scripts: {
|
|
17
|
+
build: "node scripts/bundle.mjs",
|
|
18
|
+
clean: "rm -rf dist"
|
|
19
|
+
},
|
|
20
|
+
keywords: [
|
|
21
|
+
"vent",
|
|
22
|
+
"cli",
|
|
23
|
+
"voice",
|
|
24
|
+
"agent",
|
|
25
|
+
"testing",
|
|
26
|
+
"ci-cd"
|
|
27
|
+
],
|
|
28
|
+
license: "MIT",
|
|
29
|
+
publishConfig: {
|
|
30
|
+
access: "public"
|
|
31
|
+
},
|
|
32
|
+
repository: {
|
|
33
|
+
type: "git",
|
|
34
|
+
url: "https://github.com/vent-hq/vent",
|
|
35
|
+
directory: "packages/cli"
|
|
36
|
+
},
|
|
37
|
+
homepage: "https://ventmcp.dev",
|
|
38
|
+
dependencies: {
|
|
39
|
+
"@clack/prompts": "^1.1.0",
|
|
40
|
+
ws: "^8.18.0"
|
|
41
|
+
},
|
|
42
|
+
devDependencies: {
|
|
43
|
+
"@types/ws": "^8.5.0",
|
|
44
|
+
"@vent/relay-client": "workspace:*",
|
|
45
|
+
"@vent/shared": "workspace:*",
|
|
46
|
+
esbuild: "^0.24.0"
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
export {
|
|
50
|
+
package_default as default
|
|
51
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import "./chunk-U4M3XDTH.mjs";
|
|
3
|
+
|
|
4
|
+
// package.json
|
|
5
|
+
var package_default = {
|
|
6
|
+
name: "vent-hq",
|
|
7
|
+
version: "0.4.3",
|
|
8
|
+
type: "module",
|
|
9
|
+
description: "Vent CLI \u2014 CI/CD for voice AI agents",
|
|
10
|
+
bin: {
|
|
11
|
+
"vent-hq": "dist/index.mjs"
|
|
12
|
+
},
|
|
13
|
+
files: [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
scripts: {
|
|
17
|
+
build: "node scripts/bundle.mjs",
|
|
18
|
+
clean: "rm -rf dist"
|
|
19
|
+
},
|
|
20
|
+
keywords: [
|
|
21
|
+
"vent",
|
|
22
|
+
"cli",
|
|
23
|
+
"voice",
|
|
24
|
+
"agent",
|
|
25
|
+
"testing",
|
|
26
|
+
"ci-cd"
|
|
27
|
+
],
|
|
28
|
+
license: "MIT",
|
|
29
|
+
publishConfig: {
|
|
30
|
+
access: "public"
|
|
31
|
+
},
|
|
32
|
+
repository: {
|
|
33
|
+
type: "git",
|
|
34
|
+
url: "https://github.com/vent-hq/vent",
|
|
35
|
+
directory: "packages/cli"
|
|
36
|
+
},
|
|
37
|
+
homepage: "https://ventmcp.dev",
|
|
38
|
+
dependencies: {
|
|
39
|
+
"@clack/prompts": "^1.1.0",
|
|
40
|
+
ws: "^8.18.0"
|
|
41
|
+
},
|
|
42
|
+
devDependencies: {
|
|
43
|
+
"@types/ws": "^8.5.0",
|
|
44
|
+
"@vent/relay-client": "workspace:*",
|
|
45
|
+
"@vent/shared": "workspace:*",
|
|
46
|
+
esbuild: "^0.24.0"
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
export {
|
|
50
|
+
package_default as default
|
|
51
|
+
};
|