mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +00:00
* feat: add poc for core time range class * fix: use object keys instead of strings for minification * Update packages/react/react/src/components/TimeRange.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: cleanup and add time range core to html * fix: add range core component, implement volume * Update packages/core/core/src/utils/state.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/core/core/src/components/range.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
31 lines
583 B
JSON
31 lines
583 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "stream",
|
|
"concurrency": "20",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"interactive": false,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"generate:icons": {
|
|
"inputs": ["./packages/core/icons/assets/**"],
|
|
"outputs": ["src/generated-icons/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|