a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lex-cli): set default external concurrency to 1

Mary 04634055 03af6f81

+6 -2
+5
.changeset/petite-cases-smell.md
··· 1 + --- 2 + '@atcute/lex-cli': patch 3 + --- 4 + 5 + set default external concurrency to 1
+1 -2
packages/lexicons/lex-cli/src/config.ts
··· 1 1 import * as fs from 'node:fs/promises'; 2 - import { availableParallelism } from 'node:os'; 3 2 import * as path from 'node:path'; 4 3 import * as url from 'node:url'; 5 4 ··· 72 71 concurrency: v 73 72 .number() 74 73 .assert((value) => Number.isInteger(value) && value > 0, `must be a positive integer`) 75 - .optional(() => availableParallelism()), 74 + .optional(() => 1), 76 75 }), 77 76 ); 78 77