mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
25 lines
452 B
JSON
25 lines
452 B
JSON
|
{
|
||
|
"$schema": "https://turbo.build/schema.json",
|
||
|
"pipeline": {
|
||
|
"build": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"outputs": [".next/**", "dist/**"]
|
||
|
},
|
||
|
"test": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"outputs": []
|
||
|
},
|
||
|
"lint": {
|
||
|
"outputs": []
|
||
|
},
|
||
|
"dev": {
|
||
|
"cache": false
|
||
|
},
|
||
|
"start": {
|
||
|
"cache": false
|
||
|
},
|
||
|
"clean": {
|
||
|
"cache": false
|
||
|
}
|
||
|
}
|
||
|
}
|