(options: ExecuteCommandOptions)
| 153 | } |
| 154 | |
| 155 | export function getExecuteCommand(options: ExecuteCommandOptions): string { |
| 156 | return getExecuteCommandParts(options).join(' ') |
| 157 | } |
| 158 | |
| 159 | export function getExecuteCommandParts(options: ExecuteCommandOptions): string[] { |
| 160 | const pm = packageManagers.find(p => p.id === options.packageManager) |
no test coverage detected