(root: string, packagesToValidate: readonly string[])
| 241 | ); |
| 242 | |
| 243 | const executePackageValidation = (root: string, packagesToValidate: readonly string[]) => { |
| 244 | const filterArgs = packagesToValidate.map((pkg) => `--filter=${pkg}`); |
| 245 | return pipe( |
| 246 | packagesToValidate, |
| 247 | displayPackageValidationStart, |
| 248 | Effect.andThen(() => runTurboValidation(root, filterArgs)) |
| 249 | ); |
| 250 | }; |
| 251 | |
| 252 | const validatePackages = (packagesToValidate: readonly string[]) => |
| 253 | packagesToValidate.length === 0 |
no test coverage detected