* chore: test cache build * test turbo * chore: intentionally break tests * chore: fix test * chore: rename test
23 lines
464 B
JSON
23 lines
464 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": []
|
|
},
|
|
"test:integration:chunk": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
}
|
|
},
|
|
"globalDependencies": ["turbo.json"]
|
|
}
|