Skip to content

Commit

Permalink
Run db:generate before linting
Browse files Browse the repository at this point in the history
  • Loading branch information
imxeno committed Jul 14, 2024
1 parent a642651 commit 738220a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
"db:generate": {
"outputs": ["prisma/client/**"]
},
"lint": {},
"lint:fix": {},
"lint": {
"dependsOn": ["^db:generate"]
},
"lint:fix": { "dependsOn": ["^db:generate"] },
"format": {},
"format:fix": {},
"dev": { "dependsOn": ["^db:generate"], "cache": false, "persistent": true }
Expand Down

0 comments on commit 738220a

Please sign in to comment.