mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 13:08:17 +00:00
Set Jest config file in package script Include module path Include tests in project folders Remove index module exports Hardcode configuration parameters Move parameter binding into main run function Use alias imports Run test sequentially Remove cleanup (async conflict) Revert Jest option Increase test timeout to 15 seconds
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
/** Resolver to obtain information about the repository */
|
|
export interface CurrentCommitResolver {
|
|
/**
|
|
* Resolves the current commit.
|
|
* @returns The current commit.
|
|
*/
|
|
ResolveAsync(): Promise<string>;
|
|
/**
|
|
* Returns true if the repository is empty
|
|
* @returns True if the repository is empty
|
|
*/
|
|
IsEmptyRepoAsync(): Promise<boolean>;
|
|
}
|