mirror of
https://github.com/tabler/tabler.git
synced 2026-01-24 20:06:37 +00:00
42 lines
671 B
JSON
42 lines
671 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_POSTHOG_KEY",
|
|
"NEXT_PUBLIC_POSTHOG_HOST"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
"demo/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"clean": {
|
|
"dependsOn": [
|
|
"^clean"
|
|
],
|
|
"cache": false
|
|
},
|
|
"bundlewatch": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"cache": true
|
|
},
|
|
"type-check": {
|
|
"dependsOn": [
|
|
"^type-check"
|
|
],
|
|
"cache": true
|
|
}
|
|
}
|
|
} |