@exodus/xqa 1.6.0 → 1.6.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.
- package/dist/xqa.cjs +2 -2
- package/package.json +2 -2
package/dist/xqa.cjs
CHANGED
|
@@ -53747,7 +53747,7 @@ function resolveColorLevel(stream) {
|
|
|
53747
53747
|
if (process.env.COLORTERM === "truecolor" || process.env.COLORTERM === "24bit") {
|
|
53748
53748
|
return COLOR_LEVEL_TRUECOLOR;
|
|
53749
53749
|
}
|
|
53750
|
-
if (!stream.hasColors()) {
|
|
53750
|
+
if (!stream.hasColors?.()) {
|
|
53751
53751
|
return 0;
|
|
53752
53752
|
}
|
|
53753
53753
|
return 1;
|
|
@@ -75730,7 +75730,7 @@ function resolveXqaDirectory() {
|
|
|
75730
75730
|
return result.value;
|
|
75731
75731
|
}
|
|
75732
75732
|
var program2 = new Command();
|
|
75733
|
-
program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.6.
|
|
75733
|
+
program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.6.1"}${false ? ` (dev build +${"6b23ee9"})` : ""}`);
|
|
75734
75734
|
program2.command("init").description("Initialize a new xqa project in the current directory").action(() => {
|
|
75735
75735
|
runInitCommand();
|
|
75736
75736
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/xqa",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"vitest": "^3.2.1",
|
|
28
28
|
"zod": "^3.0.0",
|
|
29
29
|
"@qa-agents/display": "0.0.0",
|
|
30
|
-
"@qa-agents/eslint-config": "0.0.0",
|
|
31
30
|
"@qa-agents/explorer": "0.0.0",
|
|
32
31
|
"@qa-agents/mobile-ios": "0.0.0",
|
|
33
32
|
"@qa-agents/pipeline": "0.0.0",
|
|
34
33
|
"@qa-agents/shared": "0.0.0",
|
|
34
|
+
"@qa-agents/eslint-config": "0.0.0",
|
|
35
35
|
"@qa-agents/typescript-config": "0.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|