UNPKG

@coveo/semantic-monorepo-tools

Version:

A library of helper functions to do SemVer2 compliant releases from Conventional Commits in monorepos

8 lines (7 loc) 398 B
/** * Get the name of every package that changed * @param since selects all the packages changed since the specified commit/branch/tag * @param excludePackages filter out the specified packages/directory from the output * @return an array representing the output of the command in each changed package */ export default function (since: string, excludePackages?: string[]): Promise<string[]>;