mirror of
https://github.com/colanode/colanode.git
synced 2026-02-24 20:09:45 +01:00
29 lines
617 B
JSON
29 lines
617 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [".env", "**/.env.*local"],
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"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"]
|
|
}
|
|
}
|
|
}
|