mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 16:15:22 +00:00
31 lines
745 B
JSON
31 lines
745 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": ["NODE_ENV", "CI", "ARGOS_*", "GITHUB_*"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist"]
|
|
},
|
|
"build:cloudflare": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck", "^build"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"unit": {
|
|
"dependsOn": ["^unit", "^build"]
|
|
},
|
|
"e2e": {
|
|
"dependsOn": ["^e2e"],
|
|
"env": ["BASE_URL"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|