@pnpm/exec.build-commands
Version:
Commands for managing dependency builds
8 lines (7 loc) • 461 B
TypeScript
import { type Config } from '@pnpm/config';
export type IgnoredBuildsCommandOpts = Pick<Config, 'modulesDir' | 'dir' | 'rootProjectManifest' | 'lockfileDir'>;
export declare const commandNames: string[];
export declare function help(): string;
export declare function cliOptionsTypes(): Record<string, unknown>;
export declare function rcOptionsTypes(): Record<string, unknown>;
export declare function handler(opts: IgnoredBuildsCommandOpts): Promise<string>;