2023-01-10 16:21:14 +03:00

30 lines
567 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["dist/**", ".next/**", "public/dist/**"],
"dependsOn": ["^build"],
"env": ["NEXT_PUBLIC_API_HOST"]
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": []
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:fix": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"cache": false
},
"clean": {
"cache": false
}
},
"globalDependencies": [".env.*"]
}