Files
v10/turbo.json
T

33 lines
634 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"concurrency": "20",
"globalEnv": ["CONTEXT", "DEPLOY_PRIME_URL"],
"tasks": {
"build": {
"dependsOn": ["^build", "^build:cdn"],
"outputs": ["dist/**", ".netlify/**"]
},
"build:cdn": {
"dependsOn": ["build"],
"outputs": ["cdn/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true,
"interactive": false
},
"clean": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
}
}
}