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

Function validateWithNoChangesets

scripts/validate-changesets.ts:850–860  ·  view source on GitHub ↗
(
  changedFiles: readonly string[],
  packages: readonly PackageInternal[],
  rootDir: string
)

Source from the content-addressed store, hash-verified

848};
849
850const validateWithNoChangesets = (
851 changedFiles: readonly string[],
852 packages: readonly PackageInternal[],
853 rootDir: string
854) =>
855 pipe(
856 areAllChangesDependencyOnly(changedFiles, packages, rootDir),
857 Effect.flatMap((isDepOnly) =>
858 isDepOnly ? displayDependencyOnlyChanges : displayMissingChangesetError
859 )
860 );
861
862const validateCodeChanges = (
863 changedFiles: readonly string[],

Callers 1

validateCodeChangesFunction · 0.85

Calls 1

Tested by

no test coverage detected