mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-01-14 07:38:04 -05:00
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 -->
36 lines
660 B
JSON
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"]
|
|
}
|