Skip to content

Commit

Permalink
Repair Turborepo's cache hash
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher committed May 13, 2024
1 parent 1e31941 commit 1966215
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 1966215

Please sign in to comment.