(root: string)
| 54 | } |
| 55 | |
| 56 | function hasRootFile(root: string): boolean { |
| 57 | return ROOT_FILES.some((file) => fs.existsSync(join(root, file))) |
| 58 | } |
| 59 | |
| 60 | function hasPackageJSON(root: string) { |
| 61 | const path = join(root, 'package.json') |
no outgoing calls
no test coverage detected