(fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string)
| 88 | ); |
| 89 | |
| 90 | const readDirectoryPackages = (fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string) => |
| 91 | pipe( |
| 92 | packagesDir, |
| 93 | fs.readDirectory, |
| 94 | Effect.flatMap(readAllPackageDirectories(fs, path, packagesDir)) |
| 95 | ); |
| 96 | |
| 97 | const readPackagesWhenExists = |
| 98 | (fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string) => (exists: boolean) => |
no test coverage detected