Skip to content

Commit d288d08

Browse files
committed
Simplify 'check' task in turbo.json
Remove the unnecessary dependsOn configuration for the "check" task in turbo.json. The task had a dependency on "package" which is not required, so this change cleans up the task definition by making it an empty object, aligning it with other simple tasks and avoiding unintended task ordering or execution. These changes are safe for CI- the workflow builds all necessary packages and generates type definitions before running `pnpm check`, so removing the package dependency from the check task won't break the build.
1 parent 72331f0 commit d288d08

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

turbo.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
"cache": false,
2323
"persistent": true
2424
},
25-
"check": {
26-
"dependsOn": ["package"]
27-
},
25+
"check": {},
2826
"playwright:install": {},
2927
"test": {
3028
"dependsOn": ["package", "playwright:install"]

0 commit comments

Comments
 (0)