@vfarcic/dot-ai 0.129.0 → 0.130.0
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.
|
@@ -39,7 +39,7 @@ async function executeKubectl(args, config) {
|
|
|
39
39
|
if (code !== 0) {
|
|
40
40
|
reject(new Error(`kubectl command failed: ${stderr || stdout}`));
|
|
41
41
|
}
|
|
42
|
-
else if (stderr && !stderr.includes('Warning')) {
|
|
42
|
+
else if (stderr && !stderr.includes('Warning') && !stderr.includes('No resources found')) {
|
|
43
43
|
reject(new Error(`kubectl command failed: ${stderr}`));
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
@@ -56,7 +56,7 @@ async function executeKubectl(args, config) {
|
|
|
56
56
|
timeout,
|
|
57
57
|
maxBuffer: 100 * 1024 * 1024 // 100MB buffer for large clusters with 1000+ CRDs
|
|
58
58
|
});
|
|
59
|
-
if (stderr && !stderr.includes('Warning')) {
|
|
59
|
+
if (stderr && !stderr.includes('Warning') && !stderr.includes('No resources found')) {
|
|
60
60
|
throw new Error(`kubectl command failed: ${stderr}`);
|
|
61
61
|
}
|
|
62
62
|
return stdout.trim();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vfarcic/dot-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.130.0",
|
|
4
4
|
"description": "AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance",
|
|
5
5
|
"mcpName": "io.github.vfarcic/dot-ai",
|
|
6
6
|
"main": "dist/index.js",
|