turbo.json — astro Source File
Architecture documentation for turbo.json, a json file in the astro codebase.
Entity Profile
Source Code
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"**/*",
"!test/**/*",
"!e2e/**/*",
"!performance/**/*",
"!.astro/**/*",
"!.cache/**/*",
"!mod.js",
"!mod.js.map"
],
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"],
"outputLogs": "new-only",
"passThroughEnv": ["SKIP_OG", "PUBLIC_TWO_LANG"]
},
"build:ci": {
"dependsOn": ["^build:ci"],
"inputs": [
"**/*",
"!test/**/*",
"!e2e/**/*",
"!performance/**/*",
"!.astro/**/*",
"!.cache/**/*",
"!mod.js",
"!mod.js.map"
],
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"],
"outputLogs": "new-only"
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^test"],
"env": ["RUNNER_OS", "NODE_VERSION"],
"outputLogs": "new-only"
},
"test:hosted": {
"cache": false,
"outputLogs": "new-only"
}
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free