Skip to content

Commit

Permalink
move script to verify migration order to take advantage of turbo cache
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeBu committed Sep 25, 2024
1 parent 9f02304 commit ad094dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"includecheck": "turbo run includecheck",
"check": "turbo run check",
"format:check": "turbo run format:check",
"fullcheck": "pnpm back verify-migrations-order && turbo run includecheck check typecheck test --concurrency=50%",
"fullcheck": "turbo run verify-migrations-order includecheck check typecheck test --concurrency=50%",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"dev": "turbo run dev",
"fast-checks": "turbo run includecheck check && pnpm front test && pnpm shared test"
"fast-checks": "turbo run includecheck check verify-migrations-order && pnpm front test && pnpm shared test"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
Expand Down
3 changes: 3 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"dependsOn": ["^typecheck"],
"outputs": []
},
"verify-migrations-order": {
"outputs": []
},
"test": {
"dependsOn": ["typecheck"],
"outputs": []
Expand Down

0 comments on commit ad094dd

Please sign in to comment.