7877a06d82
* feat: use persistent per turbo recs * feat: preserve types yay * fix: *actually* solve problem * fix: type failures from content types template * fix: bad JS doc comments * fix: bad src/content/template path * chore: changeset --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
43 lines
958 B
JSON
43 lines
958 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": [
|
|
"**/*",
|
|
"!test/**/*",
|
|
"!e2e/**/*",
|
|
"!performance/**/*",
|
|
"!.astro/**/*",
|
|
"!.cache/**/*",
|
|
"!mod.js",
|
|
"!mod.js.map"
|
|
],
|
|
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"],
|
|
"outputMode": "new-only"
|
|
},
|
|
"build:ci": {
|
|
"dependsOn": ["^build:ci"],
|
|
"inputs": [
|
|
"**/*",
|
|
"!test/**/*",
|
|
"!e2e/**/*",
|
|
"!performance/**/*",
|
|
"!.astro/**/*",
|
|
"!.cache/**/*",
|
|
"!mod.js",
|
|
"!mod.js.map"
|
|
],
|
|
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"],
|
|
"outputMode": "new-only"
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"env": ["RUNNER_OS", "NODE_VERSION"],
|
|
"outputMode": "new-only"
|
|
}
|
|
}
|
|
}
|