fixo-cli 1.0.0 → 1.0.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/index.js +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -199,10 +199,10 @@ async function main() {
|
|
|
199
199
|
// ──── Step 0: Print the lava logo (the new UI is the only UI) ────
|
|
200
200
|
renderLogo();
|
|
201
201
|
renderCommandGrid();
|
|
202
|
-
// Node version check (major >=
|
|
202
|
+
// Node version check (major >= 20)
|
|
203
203
|
const nodeMajor = parseInt(process.versions.node.split('.')[0], 10);
|
|
204
|
-
if (nodeMajor <
|
|
205
|
-
console.error(`${C.RED}Error: FixO CLI requires Node.js version
|
|
204
|
+
if (nodeMajor < 20) {
|
|
205
|
+
console.error(`${C.RED}Error: FixO CLI requires Node.js version 20.0.0 or higher (current version: ${process.version}).${C.RESET}`);
|
|
206
206
|
process.exit(1);
|
|
207
207
|
}
|
|
208
208
|
const args = parseArgs();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fixo-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "FixO CLI — Autonomous Free Multi-Provider LLM Coding Tool",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://github.com/Abrar-Akhunji/FIXO_CLI#readme",
|
|
43
43
|
"engines": {
|
|
44
|
-
"node": ">=
|
|
44
|
+
"node": ">=20.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@clack/prompts": "^0.9.0",
|