mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
28 lines
488 B
JSON
28 lines
488 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "stream",
|
|
"concurrency": "20",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".netlify/**"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
"interactive": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|