45 lines
736 B
JSON
45 lines
736 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"globalDependencies": [
|
|
"**/.env.*local"
|
|
],
|
|
"tasks": {
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"lint:fix": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"//#format-and-lint": {},
|
|
"//#format-and-lint:fix": {
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"cache": false,
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
".env*"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"build:templates": {
|
|
"dependsOn": [],
|
|
"outputs": [
|
|
"dist/templates/**"
|
|
]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
} |