Files
2025-02-05 01:57:45 +01:00

27 lines
468 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"format": {
"dependsOn": ["^format"]
},
"format:check": {
"dependsOn": ["^format:check"]
},
"test": {
"cache": false,
"dependsOn": ["^build", "build"]
},
"clean": {
"dependsOn": ["^clean"]
},
"precommit": {},
"start": {
"cache": false
}
}
}