(packagesDir: string)
| 66 | ); |
| 67 | |
| 68 | const readPackageMetadata = (packagesDir: string) => (dir: string) => |
| 69 | pipe(joinToPath(packagesDir, dir, 'package.json'), Effect.andThen(checkExistsAndRead(dir))); |
| 70 | |
| 71 | const processPackageDirectories = (packagesDir: string) => (dirs: ReadonlyArray<string>) => |
| 72 | pipe( |
no test coverage detected