Files
hub-monorepo/turbo.json
Varun Srinivasan 9e699617f7 Revert "chore: upgrade turborepo to v2" (#2170)
Turborepo 2 is causing sporadic failures when running lint:ci for
reasons that I don't quite understand. Since this isn't essential, I'm
reverting the change.

Reverts farcasterxyz/hub-monorepo#2156

<!-- start pr-codex -->

---

## PR-Codex overview
This PR updates the `turbo` package version and refactors the
`turbo.json` configuration file structure.

### Detailed summary
- Updated `turbo` package version from `2.0.6` to `1.10.3`
- Refactored `turbo.json` configuration file structure
- Updated dependencies in `yarn.lock`

>  Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
2024-07-12 11:53:53 -07:00

36 lines
660 B
JSON

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