mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-23 16:56:07 +00:00
fix: rush fast-format (#6702)
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
parent
9d5fe507d1
commit
4ae95a447f
@ -1140,7 +1140,8 @@ export function devTool (
|
|||||||
.option('-bl, --blobLimit <blobLimit>', 'A blob size limit in megabytes (default 50mb)', '50')
|
.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('-c, --concurrency <concurrency>', 'Number of files being processed concurrently', '10')
|
||||||
.option('--disabled', 'Include disabled workspaces', false)
|
.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 = {
|
const params = {
|
||||||
blobSizeLimitMb: parseInt(cmd.blobLimit),
|
blobSizeLimitMb: parseInt(cmd.blobLimit),
|
||||||
concurrency: parseInt(cmd.concurrency),
|
concurrency: parseInt(cmd.concurrency),
|
||||||
@ -1182,7 +1183,8 @@ export function devTool (
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
|
)
|
||||||
|
|
||||||
program
|
program
|
||||||
.command('sync-files')
|
.command('sync-files')
|
||||||
|
Loading…
Reference in New Issue
Block a user