31 lines
463 B
JSON
31 lines
463 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"!node_modules/**",
|
|
"!src/**",
|
|
"*/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": []
|
|
}
|
|
},
|
|
"globalDependencies": [
|
|
"turbo.json"
|
|
]
|
|
}
|