UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk without cli. @reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

8 lines (7 loc) 363 B
/** * Asks the user if they want to install dependencies and attempts to install them if confirmed. * @param cwd The current working directory * @returns true if dependencies are still missing (installation failed or user declined), * false if dependencies are now installed */ export declare function askInstallDeps(cwd: string): Promise<boolean>;