(packagesDir: string)
| 77 | ); |
| 78 | |
| 79 | const readAndProcessPackages = (packagesDir: string) => |
| 80 | pipe(packagesDir, readDirectoryContents, Effect.andThen(processPackageDirectories(packagesDir))); |
| 81 | |
| 82 | const getAllPackages = pipe( |
| 83 | rootDir, |
nothing calls this directly
no test coverage detected