| 3 | import { execSync } from 'child_process'; |
| 4 | |
| 5 | interface PackageJson { |
| 6 | name: string; |
| 7 | version: string; |
| 8 | [key: string]: any; |
| 9 | } |
| 10 | |
| 11 | interface UpdateResult { |
| 12 | success: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected