Files
hub-monorepo/turbo.json
Anthony D'Addeo 6555674168 chore: add clean to turbo pipeline (#405)
* chore: add clean to turbo pipeline

* add clean script to root package
2023-01-11 09:39:35 -05:00

29 lines
557 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**", "dist/**"]
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"lint": {
"outputs": []
},
"test": {
"dependsOn": ["lint", "build"],
"inputs": ["src/**/*.ts"],
"outputs": []
},
"test:ci": {
"dependsOn": ["lint", "build"],
"outputs": ["coverage/**"]
}
},
"globalDependencies": ["tsconfig.json", ".eslintrc.cjs"]
}