mirror of
https://github.com/colanode/colanode.git
synced 2025-12-14 18:57:46 +01:00
25 lines
550 B
JSON
25 lines
550 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [".env", "**/.env.*local"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "out/**", "assets/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
|
|
},
|
|
"compile": {
|
|
"dependsOn": ["^compile"]
|
|
},
|
|
"clean": {
|
|
"dependsOn": ["^clean"]
|
|
}
|
|
}
|
|
}
|