Files
medusa-store/turbo.json
Riqwan Thamir 8d9af2df81 fix: bust cache builds (#6847)
* chore: test cache build

* test turbo

* chore: intentionally break tests

* chore: fix test

* chore: rename test
2024-03-27 17:46:32 +01:00

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"]
}