38 строки
605 B
JSON
38 строки
605 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [],
|
|
"outputs": ["dist/**", "docs/**"]
|
|
},
|
|
"test": {
|
|
"dependsOn": [],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": [],
|
|
"outputs": []
|
|
},
|
|
"bundle": {
|
|
"dependsOn": [],
|
|
"outputs": ["dist/**", "build/**"]
|
|
},
|
|
"ci": {
|
|
"dependsOn": ["build", "lint", "//#romecheck", "test", "bundle"],
|
|
"outputs": ["dist/**", "docs/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"release": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"//#romecheck": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|