MCPcopy Create free account
hub / github.com/CodeForBreakfast/eventsourcing / executePackageValidation

Function executePackageValidation

scripts/validate-release.ts:243–250  ·  view source on GitHub ↗
(root: string, packagesToValidate: readonly string[])

Source from the content-addressed store, hash-verified

241 );
242
243const 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
252const validatePackages = (packagesToValidate: readonly string[]) =>
253 packagesToValidate.length === 0

Callers 1

validatePackagesFunction · 0.85

Calls 1

runTurboValidationFunction · 0.70

Tested by

no test coverage detected