UNPKG

@pnpm/exec.build-commands

Version:
9 lines (8 loc) 619 B
import { type Config } from '@pnpm/config'; import { type RebuildCommandOpts } from '@pnpm/plugin-commands-rebuild'; export type ApproveBuildsCommandOpts = Pick<Config, 'modulesDir' | 'dir' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'onlyBuiltDependencies' | 'ignoredBuiltDependencies'>; 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: ApproveBuildsCommandOpts & RebuildCommandOpts): Promise<void>;