mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
* feat: make time range compound component * fix: add root ctx, use skin styles * fix: improve time range * fix: move more logic to root component * fix: renaming * fix: dragging and add memo to context value * fix: improve time range styles
30 lines
509 B
JSON
30 lines
509 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "stream",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"interactive": false,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|