1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00
Files
tabler/turbo.json

35 lines
518 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV"
],
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"inputs": [
"shared/**",
"preview/**"
],
"outputs": [
"dist/**"
]
},
"dev": {
"cache": false,
"persistent": false
},
"clean": {
"dependsOn": [
"^clean"
],
"cache": false
},
"bundlewatch": {
"dependsOn": [
"build"
]
}
}
}