(fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string)
| 80 | |
| 81 | const readAllPackageDirectories = |
| 82 | (fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string) => (dirs: readonly string[]) => |
| 83 | pipe( |
| 84 | dirs, |
| 85 | EffectArray.map(readPackage(fs, path, packagesDir)), |
| 86 | Effect.all, |
| 87 | Effect.map(EffectArray.getSomes) |
| 88 | ); |
| 89 | |
| 90 | const readDirectoryPackages = (fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string) => |
| 91 | pipe( |
no test coverage detected