@liara/cli
Version:
The command line interface for Liara
14 lines (13 loc) • 371 B
TypeScript
import { DebugLogger } from './output.js';
export default function collectGitInfo(cwd: string, debug: DebugLogger): Promise<{
branch: string | null;
message: string | null;
commit: string | null;
committedAt: string | null;
remote: string | null;
author: {
email: string | null;
name: string | null;
};
tags: string[];
}>;