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