1
0
mirror of https://github.com/tabler/tabler.git synced 2026-04-14 12:33:08 +04:00
Files
tabler/turbo.json

36 lines
572 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
}
}
}