// install_context_view
Turborepo Pipeline
Install context for /configs/turborepo-pipeline
run this command in your project root
$ blink apply turborepo-pipelineWrites this file into your project at turbo.json. Existing files at those paths are replaced.
what gets written
// turbo.jsonjson
{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"globalDependencies": [
"pnpm-lock.yaml",
".env",
".env.local",
"tsconfig.base.json"
],
"globalPassThroughEnv": [
"CI",
"CI_RUN_ID",
"VERCEL",
"VERCEL_ENV"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**",
".velite/**",
"public/pagefind/**"
],
"env": [
"NODE_ENV",
"NEXT_PUBLIC_SITE_URL",
"NEXT_PUBLIC_ANALYTICS_ID",
"DATABASE_URL"
]
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"env": ["NODE_ENV"]
},
"lint": {
"dependsOn": ["^topo"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^topo"],
"outputs": []
},
"format": {
"outputs": []
},
"dev": {
"persistent": true,
"cache": false,
"dependsOn": []
},
"clean": {
"cache": false
}
}
}