mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
aa9c71671a
## What? Moves `conductor.json` from `.conductor/conductor.json` to the repository root and updates script paths accordingly. ## Why? Conductor searches for configuration files in a specific priority order: 1. Workspace root 2. Remote default branch 3. Repository root The previous location at `.conductor/conductor.json` wasn't in the standard search path, which could cause Conductor to not detect the configuration properly. Moving to the repo root follows the [recommended pattern from Conductor's documentation](https://docs.conductor.build/core/conductor-json). ## How? - Moved `conductor.json` to repository root - Updated script paths from `./scripts/` to `./.conductor/scripts/` - Scripts remain in `.conductor/scripts/` for organization
25 lines
685 B
JSON
25 lines
685 B
JSON
{
|
|
"name": "next.js",
|
|
"description": "Next.js framework development workspace",
|
|
"scripts": {
|
|
"setup": "./.conductor/scripts/setup.sh",
|
|
"run": "./.conductor/scripts/run.sh"
|
|
},
|
|
"worktree": {
|
|
"default_branch": "canary"
|
|
},
|
|
"environment": {
|
|
"NEXT_TELEMETRY_DISABLED": "1",
|
|
"TURBO_TELEMETRY_DISABLED": "1"
|
|
},
|
|
"recommendations": {
|
|
"parallel_agents": 3,
|
|
"notes": [
|
|
"Each worktree uses ~500MB-1GB disk space after build",
|
|
"Run 'pnpm sweep' periodically to clean Rust build artifacts",
|
|
"Use 'pnpm test-dev-turbo' for fastest test iteration",
|
|
"Never run 'pnpm build' while 'pnpm dev' is active (causes corruption)"
|
|
]
|
|
}
|
|
}
|