mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04:00
* chore(config): clean up bun, turbo, and next.js config * chore(ci): bump bun to 1.3.11 in dockerfiles and workflows
45 lines
831 B
JSON
45 lines
831 B
JSON
{
|
|
"$schema": "https://turbo.build/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": []
|
|
}
|
|
}
|
|
}
|