astro/turbo.json
Ben Holmes 7877a06d82
Fix up pnpm dev (#7424)
* 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>
2023-06-20 14:06:36 -04:00

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"
}
}
}