mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* improvement(turbo): align turborepo config with best practices * fix(turbo): address PR review feedback * fix(turbo): add lint:check task for read-only lint+format CI checks lint:check previously delegated to format:check which only checked formatting. Now it runs biome check (no --write) which enforces both lint rules and formatting without mutating files. * upgrade turbo
45 lines
841 B
JSON
45 lines
841 B
JSON
{
|
|
"$schema": "https://v2-8-13.turborepo.dev/schema.json",
|
|
"envMode": "loose",
|
|
"tasks": {
|
|
"transit": {
|
|
"dependsOn": ["^transit"],
|
|
"outputs": []
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["transit"],
|
|
"outputs": []
|
|
},
|
|
"format": {
|
|
"outputs": []
|
|
},
|
|
"format:check": {
|
|
"outputs": []
|
|
},
|
|
"lint:check": {
|
|
"dependsOn": ["transit"],
|
|
"outputs": []
|
|
},
|
|
"type-check": {
|
|
"dependsOn": ["transit"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|