(root: string)
| 12 | } |
| 13 | |
| 14 | function hasResourceLayout(root: string): boolean { |
| 15 | return fs.existsSync(path.join(root, 'manifests')) || fs.existsSync(path.join(root, 'bundled')); |
| 16 | } |
| 17 | |
| 18 | function findPackageRootFrom(startDir: string): string | null { |
| 19 | let dir = startDir; |
no test coverage detected