juno-code 1.0.34 → 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 +471 -186
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +470 -185
- 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/__pycache__/codex.cpython-38.pyc +0 -0
- package/dist/templates/services/claude.py +1 -1
- package/dist/templates/services/codex.py +68 -14
- package/dist/templates/services/gemini.py +473 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -75,7 +75,7 @@ var __export = (target, all) => {
|
|
|
75
75
|
exports.version = void 0;
|
|
76
76
|
var init_version = __esm({
|
|
77
77
|
"src/version.ts"() {
|
|
78
|
-
exports.version = "1.0.
|
|
78
|
+
exports.version = "1.0.36";
|
|
79
79
|
}
|
|
80
80
|
});
|
|
81
81
|
function isHeadlessEnvironment() {
|
|
@@ -7088,8 +7088,8 @@ var ExecutionEngine = class extends events.EventEmitter {
|
|
|
7088
7088
|
if (!request.workingDirectory?.trim()) {
|
|
7089
7089
|
throw new Error("Working directory is required");
|
|
7090
7090
|
}
|
|
7091
|
-
if (request.maxIterations < -1 || request.maxIterations === 0) {
|
|
7092
|
-
throw new Error("Max iterations must be positive or -1 for unlimited");
|
|
7091
|
+
if (Number.isNaN(request.maxIterations) || request.maxIterations < -1 || request.maxIterations === 0) {
|
|
7092
|
+
throw new Error("Max iterations must be a positive number or -1 for unlimited");
|
|
7093
7093
|
}
|
|
7094
7094
|
}
|
|
7095
7095
|
/**
|