(
pkg: string,
args: Array<string> = [],
)
| 72 | ) |
| 73 | } |
| 74 | function getPackageManagerExecuteScript( |
| 75 | pkg: string, |
| 76 | args: Array<string> = [], |
| 77 | ) { |
| 78 | return formatCommand( |
| 79 | getPackageManagerExecuteCommand(options.packageManager, pkg, args), |
| 80 | ) |
| 81 | } |
| 82 | |
| 83 | class IgnoreFileError extends Error { |
| 84 | constructor() { |
nothing calls this directly
no test coverage detected