| 6 | import { logger } from "~/utils/logger.js"; |
| 7 | |
| 8 | export interface RunPkgManagerInstallOptions { |
| 9 | pkgManager: PackageManager; |
| 10 | devMode: boolean; |
| 11 | projectDir: string; |
| 12 | packages: string[]; |
| 13 | noInstallMode: boolean; |
| 14 | } |
| 15 | |
| 16 | export const runPkgManagerInstall = async ( |
| 17 | opts: RunPkgManagerInstallOptions, |
nothing calls this directly
no outgoing calls
no test coverage detected