mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-01-14 07:38:04 -05:00
## Why is this change needed? Upgrading turborepo to v2 using the [upgrade guide](https://turbo.build/repo/docs/crafting-your-repository/upgrading#upgrading-to-20) ## Merge Checklist - [x] PR title adheres to the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) standard - [ ] PR has a [changeset](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#35-adding-changesets) - [x] PR has been tagged with a change label(s) (i.e. documentation, feature, bugfix, or chore) - [ ] PR includes [documentation](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#32-writing-docs) if necessary. <!-- start pr-codex --> --- ## PR-Codex overview This PR updates `turbo` package to version `2.0.6`, modifies `turbo.json` structure, and upgrades other dependencies. ### Detailed summary - Updated `turbo` package to `2.0.6` - Restructured `turbo.json` file - Updated `turbo` dependencies to version `2.0.6` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
36 lines
658 B
JSON
36 lines
658 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [ "tsconfig.json"],
|
|
"tasks": {
|
|
"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/**"]
|
|
}
|
|
}
|
|
}
|