26 lines
522 B
JSON
26 lines
522 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**", "public/dist/**"],
|
|
"dependsOn": ["^build"],
|
|
"env": ["NEXT_PUBLIC_API_HOST"]
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"],
|
|
"dependsOn": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|