Skip to content

Commit 5a589e3

Browse files
ndbroadbentclaude
andcommitted
refactor: migrate from Nx to Turborepo
Removed Nx in favor of Turborepo for simpler, more focused task orchestration. Why Turborepo: - Simpler and more focused than Nx - Free Vercel Remote Cache for everyone - Better alignment with cigen's philosophy of using platform features - Native support for self-hosted caching (S3, Redis) - Less overhead, cleaner configuration Changes: - Removed nx.json and project.json - Added turbo.json with task definitions for build, test, lint, fmt, clippy - Turborepo will be used for task dependency tracking and caching Next steps: - Update cigen to read turbo.json for task graph - Create .cigen/ config for self-hosting - Generate dual-provider CI (CircleCI + GitHub Actions) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 48108d2 commit 5a589e3

File tree

3 files changed

+22
-112
lines changed

3 files changed

+22
-112
lines changed

nx.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

project.json

Lines changed: 0 additions & 78 deletions
This file was deleted.

turbo.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://turbo.build/schema.json",
3+
"tasks": {
4+
"build": {
5+
"dependsOn": ["^build"],
6+
"outputs": ["target/**"]
7+
},
8+
"test": {
9+
"dependsOn": ["build"],
10+
"outputs": []
11+
},
12+
"lint": {
13+
"outputs": []
14+
},
15+
"fmt": {
16+
"outputs": []
17+
},
18+
"clippy": {
19+
"outputs": []
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)