fix: rush fast-format (#6702)

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
Alexander Onnikov 2024-09-24 14:54:57 +07:00 committed by GitHub
parent 9d5fe507d1
commit 4ae95a447f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1140,7 +1140,8 @@ export function devTool (
.option('-bl, --blobLimit <blobLimit>', 'A blob size limit in megabytes (default 50mb)', '50')
.option('-c, --concurrency <concurrency>', 'Number of files being processed concurrently', '10')
.option('--disabled', 'Include disabled workspaces', false)
.action(async (cmd: { workspace: string, move: string, blobLimit: string, concurrency: string, disabled: boolean }) => {
.action(
async (cmd: { workspace: string, move: string, blobLimit: string, concurrency: string, disabled: boolean }) => {
const params = {
blobSizeLimitMb: parseInt(cmd.blobLimit),
concurrency: parseInt(cmd.concurrency),
@ -1182,7 +1183,8 @@ export function devTool (
}
})
})
})
}
)
program
.command('sync-files')