| 222 | } |
| 223 | |
| 224 | export interface BinaryRemovalResult { |
| 225 | removed: string[]; |
| 226 | /** Paths that could not be (fully) removed — surfaced with manual steps. */ |
| 227 | leftovers: string[]; |
| 228 | npm: 'removed' | 'failed' | 'skipped'; |
| 229 | } |
| 230 | |
| 231 | export function defaultRemoveDeps(): RemoveBinaryDeps { |
| 232 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected