(deps: readonly [FileSystem.FileSystem, Path.Path, string])
| 119 | ]): readonly PackageInternal[] => [...packages, ...examples]; |
| 120 | |
| 121 | const readAllWorkspacePackages = (deps: readonly [FileSystem.FileSystem, Path.Path, string]) => |
| 122 | pipe( |
| 123 | [readPackagesDir('packages', deps), readPackagesDir('examples', deps)] as const, |
| 124 | Effect.all, |
| 125 | Effect.map(combinePackageArrays) |
| 126 | ); |
| 127 | |
| 128 | const getAllPackages = pipe( |
| 129 | [FileSystem.FileSystem, Path.Path, getRootDir] as const, |
nothing calls this directly
no test coverage detected