1
0
mirror of synced 2025-12-25 11:00:31 -05:00
Files
blitz/turbo.json
Datner 0ba2f4e77a update monorepo tooling (#4169)
* chore: add nix

This could help contributers... contribute!

* build: use turborepo pipelines for coordination

instead of hacking it with sleeps and such....

* chore: update dev script

now we're cooking with gas! no more hacks, no more awkward flags

* chore: update pnpm version requirement

you want to support v6?? then use a v6-compatible pnpm version

* chore: update pnpm-lock
2023-07-12 13:13:51 +00:00

28 lines
498 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"buildapp": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": ["^build"]
},
"lint": {
"outputs": []
},
"dev": {
"persistent": true,
"cache": false
},
"clean": {
"cache": false
}
}
}