UNPKG

@compas/cli

Version:

CLI containing utilities and simple script runner

12 lines (9 loc) 266 B
import { cpus } from "node:os"; export const PARALLEL_COUNT = Math.max(cpus().length - 1, 1); /** * @type {Record<string, { * description: string, * exec: (logger: import("@compas/stdlib").Logger) => Promise<void> * }>} */ export const codeModMap = {};