@@ -38,10 +38,7 @@ export const checkCmd = new Command('check')
3838 const runFromRoot = cwd === repoRoot
3939 const cwdName = path . basename ( cwd )
4040
41- const turboFlags = [
42- // use all available CPU cores
43- '--concurrency=100%' ,
44- ] satisfies string [ ]
41+ const turboFlags : string [ ] = [ ]
4542
4643 if ( useContinue ) {
4744 turboFlags . push ( '--continue' )
@@ -51,10 +48,10 @@ export const checkCmd = new Command('check')
5148 deps : [ 'syncpack' , 'lint' ] ,
5249 // oxlint can be run from anywhere and it'll automatically only lint the current dir and children
5350 lint : [ 'run-oxlint' ] ,
54- types : [ 'turbo' , turboFlags , 'check:types' ] . flat ( ) ,
51+ types : [ 'turbo' , ... turboFlags , 'check:types' ] ,
5552 format : [ 'prettier' , '.' , '--cache' , '--check' , '--log-level=warn' ] ,
5653 formatShell : [ 'runx' , 'shfmt' , 'check' , '--skip-if-unavailable' ] ,
57- workersTypes : [ 'turbo' , turboFlags , 'check:workers-types' ] . flat ( ) ,
54+ workersTypes : [ 'turbo' , ... turboFlags , 'check:workers-types' ] ,
5855 } as const satisfies { [ key : string ] : string [ ] }
5956
6057 type TableRow = [ string , string , string , string ]
0 commit comments