juno-code 1.0.35 → 1.0.36
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/README.md +364 -64
- package/dist/bin/cli.js +445 -181
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +444 -180
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/templates/scripts/clean_logs_folder.sh +0 -0
- package/dist/templates/scripts/run_until_completion.sh +202 -0
- package/dist/templates/services/README.md +43 -0
- package/dist/templates/services/claude.py +1 -1
- package/dist/templates/services/codex.py +4 -4
- package/dist/templates/services/gemini.py +473 -0
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -44,7 +44,7 @@ var __export = (target, all) => {
|
|
|
44
44
|
var version;
|
|
45
45
|
var init_version = __esm({
|
|
46
46
|
"src/version.ts"() {
|
|
47
|
-
version = "1.0.
|
|
47
|
+
version = "1.0.36";
|
|
48
48
|
}
|
|
49
49
|
});
|
|
50
50
|
function isHeadlessEnvironment() {
|
|
@@ -7057,8 +7057,8 @@ var ExecutionEngine = class extends EventEmitter {
|
|
|
7057
7057
|
if (!request.workingDirectory?.trim()) {
|
|
7058
7058
|
throw new Error("Working directory is required");
|
|
7059
7059
|
}
|
|
7060
|
-
if (request.maxIterations < -1 || request.maxIterations === 0) {
|
|
7061
|
-
throw new Error("Max iterations must be positive or -1 for unlimited");
|
|
7060
|
+
if (Number.isNaN(request.maxIterations) || request.maxIterations < -1 || request.maxIterations === 0) {
|
|
7061
|
+
throw new Error("Max iterations must be a positive number or -1 for unlimited");
|
|
7062
7062
|
}
|
|
7063
7063
|
}
|
|
7064
7064
|
/**
|