cli: work around flaky formatting in bump.ts

This commit is contained in:
Patrik Oldsberg
2020-11-22 20:18:19 +01:00
parent 351539680b
commit 0c597a8d62
+1 -1
View File
@@ -157,6 +157,6 @@ async function workerThreads<T>(
return Promise.all(
Array(count)
.fill(0)
.map(pop),
.map(() => pop()),
);
}