* 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
28 lines
498 B
JSON
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
|
|
}
|
|
}
|
|
}
|