Skip to content

Commit 8ef68e1

Browse files
talionwarclaude
andauthored
feat: v0.5.0 — major deps upgrade (commander 14, ora 9, node >=20)
* test: upgrade 3 major deps for validation - commander 12.1.0 → 14.0.3 - ora 8.2.0 → 9.3.0 - @types/node 22.19.11 → 25.5.0 All 124 tests pass, typecheck clean, build OK, CLI smoke OK. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: bump to v0.5.0 — major deps upgrade - commander 12.1.0 → 14.0.3 - ora 8.2.0 → 9.3.0 - @types/node 22.19.11 → 25.5.0 - engines: node >=18 → >=20 (Node 18 EOL, vitest requires 20+) All 124 tests pass, build OK, CLI verified. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6172013 commit 8ef68e1

3 files changed

Lines changed: 67 additions & 75 deletions

File tree

package-lock.json

Lines changed: 61 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fondamenta-archcode",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Zero-dependency codebase intelligence for AI agents. Static analysis → structured Markdown.",
55
"type": "module",
66
"bin": {
@@ -47,18 +47,18 @@
4747
"url": "https://github.com/talionwar/fondamenta-archcode.git"
4848
},
4949
"engines": {
50-
"node": ">=18.0.0"
50+
"node": ">=20.0.0"
5151
},
5252
"dependencies": {
5353
"chalk": "^5.3.0",
5454
"chokidar": "^5.0.0",
55-
"commander": "^12.1.0",
55+
"commander": "^14.0.3",
5656
"fast-glob": "^3.3.2",
57-
"ora": "^8.1.0",
57+
"ora": "^9.3.0",
5858
"typescript": "^5.6.0"
5959
},
6060
"devDependencies": {
61-
"@types/node": "^22.0.0",
61+
"@types/node": "^25.5.0",
6262
"tsup": "^8.3.0",
6363
"vitest": "^4.1.0"
6464
}

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
generateAgentsReport,
2929
} from './agents/index.js';
3030

31-
const VERSION = '0.4.0';
31+
const VERSION = '0.5.0';
3232

3333
const program = new Command();
3434

0 commit comments

Comments
 (0)