Skip to content

Commit

Permalink
Repair Turborepo's cache hash (#962)
Browse files Browse the repository at this point in the history
* `pnpm` to version 9

* Repair Turborepo's cache hash
  • Loading branch information
steveluscher committed May 14, 2024
1 parent d7aa33d commit 39137f4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "tsconfig.*", "src/**"],
"outputs": [".next/**", "build/**", "dist/**", "lib/**"]
},
"lint": {
"outputs": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
"inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"],
"outputs": []
},
"test": {
"dependsOn": ["build"],
"outputs": [],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
"inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"],
"outputs": []
}
}
}

0 comments on commit 39137f4

Please sign in to comment.