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

Function handleNoCodeChanges

scripts/validate-changesets.ts:893–900  ·  view source on GitHub ↗
(
  changedFiles: readonly string[],
  changesets: readonly ChangesetInfoInternal[]
)

Source from the content-addressed store, hash-verified

891);
892
893const handleNoCodeChanges = (
894 changedFiles: readonly string[],
895 changesets: readonly ChangesetInfoInternal[]
896) =>
897 Effect.if(changedFiles.length === 0, {
898 onTrue: () => displayNoChangesMessage,
899 onFalse: () => validateDocChanges(changesets),
900 });
901
902const processChangedFiles = (
903 changedFiles: readonly string[],

Callers 2

processChangedFilesFunction · 0.85
handleChangedFilesFunction · 0.85

Calls 1

validateDocChangesFunction · 0.85

Tested by

no test coverage detected