()
| 7 | let cachedResourceRoot: string | null = null; |
| 8 | |
| 9 | export function resetResourceRootCacheForTests(): void { |
| 10 | cachedPackageRoot = null; |
| 11 | cachedResourceRoot = null; |
| 12 | } |
| 13 | |
| 14 | function hasResourceLayout(root: string): boolean { |
| 15 | return fs.existsSync(path.join(root, 'manifests')) || fs.existsSync(path.join(root, 'bundled')); |
no outgoing calls
no test coverage detected