mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 09:24:24 +04:00
54 lines
997 B
JSON
54 lines
997 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_POSTHOG_KEY",
|
|
"NEXT_PUBLIC_POSTHOG_HOST"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"inputs": [
|
|
"core/scss/**",
|
|
"core/js/**",
|
|
"core/img/**",
|
|
"core/fonts/**",
|
|
"core/.build/**",
|
|
"preview/pages/**",
|
|
"preview/scss/**",
|
|
"preview/js/**",
|
|
"preview/.build/**",
|
|
"docs/content/**",
|
|
"docs/scss/**",
|
|
"docs/js/**",
|
|
"docs/.build/**",
|
|
"shared/**",
|
|
"package.json",
|
|
"pnpm-lock.yaml"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
"demo/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"clean": {
|
|
"dependsOn": [
|
|
"^clean"
|
|
],
|
|
"cache": false
|
|
},
|
|
"bundlewatch": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"cache": true
|
|
}
|
|
}
|
|
} |