···11+---
22+'@atcute/lex-cli': patch
33+---
44+55+set default external concurrency to 1
+1-2
packages/lexicons/lex-cli/src/config.ts
···11import * as fs from 'node:fs/promises';
22-import { availableParallelism } from 'node:os';
32import * as path from 'node:path';
43import * as url from 'node:url';
54···7271 concurrency: v
7372 .number()
7473 .assert((value) => Number.isInteger(value) && value > 0, `must be a positive integer`)
7575- .optional(() => availableParallelism()),
7474+ .optional(() => 1),
7675 }),
7776);
7877