2022-05-26 19:57:01 +03:00
|
|
|
{
|
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
|
|
"pipeline": {
|
|
|
|
"build": {
|
|
|
|
"dependsOn": [],
|
|
|
|
"outputs": ["dist/**", "docs/**"]
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"dependsOn": [],
|
|
|
|
"outputs": []
|
|
|
|
},
|
2023-08-30 20:45:29 +03:00
|
|
|
"check": {
|
|
|
|
"dependsOn": [],
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"fix": {
|
2022-05-26 19:57:01 +03:00
|
|
|
"dependsOn": [],
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"dependsOn": [],
|
2022-05-26 20:28:24 +03:00
|
|
|
"outputs": ["build/**"]
|
2022-05-26 19:57:01 +03:00
|
|
|
},
|
|
|
|
"ci": {
|
2023-08-30 20:49:18 +03:00
|
|
|
"dependsOn": ["build", "check", "test", "bundle"],
|
2022-05-26 20:28:24 +03:00
|
|
|
"outputs": ["dist/**", "docs/**", "build/**"]
|
2022-05-26 19:57:01 +03:00
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"release": {
|
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"start": {
|
|
|
|
"cache": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|