Skip to content

Commit

Permalink
ci: fix turbo cache output missing
Browse files Browse the repository at this point in the history
  • Loading branch information
AprilNEA committed Dec 12, 2023
1 parent 65190a1 commit ac5a464
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"db:generate": {
"dependsOn": [
"^db:generate"
],
"outputs": [
".client/**"
]
},
"frontend#build": {
Expand All @@ -16,7 +19,8 @@
"shared#build"
],
"outputs": [
"packages/backend/.next/**"
".next/**",
"!.next/cache/**"
]
},
"backend#build": {
Expand All @@ -25,7 +29,7 @@
"shared#build"
],
"outputs": [
"packages/backend/dist/**"
"dist/**"
]
},
"build": {
Expand All @@ -35,7 +39,6 @@
],
"outputs": [
"dist/**",
"client/**",
".next/**",
"!.next/cache/**"
]
Expand Down

0 comments on commit ac5a464

Please sign in to comment.