File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tests/docstrings_examples Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -336,8 +336,8 @@ let main = async () => {
336336 // Console.log2("module length", modules->Array.length)
337337 let chuncks = modules -> chunkArray (batchSize )
338338
339- // Console.log2("chuncks length", chuncks->Array.length)
340- // Console.log2("chunck part size", chuncks->Array.map(f => f->Array.length))
339+ Console .log2 ("chuncks length" , chuncks -> Array .length )
340+ Console .log2 ("chunck part size" , chuncks -> Array .map (f => f -> Array .length ))
341341
342342 let context = ref (0 )
343343
Original file line number Diff line number Diff line change @@ -369,6 +369,8 @@ async function main() {
369369 } ) . map ( f => getExamples ( extractDocFromFile ( Path . join ( "runtime" , f ) ) ) ) . flat ( ) ;
370370 let batchSize = ( Os . cpus ( ) . length << 1 ) ;
371371 let chuncks = chunkArray ( modules , batchSize ) ;
372+ console . log ( "chuncks length" , chuncks . length ) ;
373+ console . log ( "chunck part size" , chuncks . map ( f => f . length ) ) ;
372374 let context = {
373375 contents : 0
374376 } ;
You can’t perform that action at this time.
0 commit comments