UNPKG

patrick-mades-dev-tools

Version:

A collection of development tools and utilities Made by Patrick Made for Patrick Made (but feel free to use it for your own projects)

21 lines (20 loc) 534 B
/** * Install Dependencies Command * Handles installation of project dependencies */ import { CommandResult } from '../../../types'; /** * Options for installing dependencies */ interface InstallOptions { packageManager?: string; dryRun?: boolean; outputDir?: string; } /** * Installs required dependencies * @param options - Installation options * @returns Result of the installation */ declare const installDependencies: (options?: InstallOptions) => Promise<CommandResult>; export default installDependencies;