Skip to content

Commit

Permalink
build(docs): maybe fix vercel and turbo caching issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Apr 22, 2024
1 parent 7776aca commit 46d46c4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"@react-md/material-icons#build": {
"cache": false,
"outputs": ["*.d.ts", "*.js"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "types/**", ".next/**", "!.next/cache/**"]
"outputs": [
"dist/**",
"types/**",
".next/**",
"src/generated/**",
"!.next/cache/**"
]
},
"test": {
"outputs": ["coverage/**"],
Expand Down

0 comments on commit 46d46c4

Please sign in to comment.