(folder: string)
| 197 | } |
| 198 | |
| 199 | export function hasPackageMapFile(folder: string): boolean { |
| 200 | return existsAndIsFileSync(path.join(folder, ".dart_tool", "package_config.json")); |
| 201 | } |
| 202 | |
| 203 | export function hasPubspec(folder: string): boolean { |
| 204 | return existsAndIsFileSync(path.join(folder, "pubspec.yaml")); |
no test coverage detected