(fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string)
| 96 | |
| 97 | const readPackagesWhenExists = |
| 98 | (fs: FileSystem.FileSystem, path: Path.Path, packagesDir: string) => (exists: boolean) => |
| 99 | Effect.if(exists, { |
| 100 | onTrue: () => readDirectoryPackages(fs, path, packagesDir), |
| 101 | onFalse: () => Effect.succeed([]), |
| 102 | }); |
| 103 | |
| 104 | const readPackagesDir = ( |
| 105 | directoryName: string, |
no test coverage detected