This commit is contained in:
Aya Morisawa
2016-12-29 20:03:34 +09:00
parent 6ead4d3f95
commit 7c0d22945c
2 changed files with 17 additions and 7 deletions

View File

@@ -139,10 +139,14 @@ async function init(): Promise<State> {
// Get commit info
try {
const commit = await prominence(git).getLastCommit();
log('Info', `commit: ${commit.shortHash} ${commit.author.name} <${commit.author.email}>`);
log('Info', ` ${new Date(parseInt(commit.committedOn, 10) * 1000)}`);
const shortHash: string = commit.shortHash;
const hash: string = commit.hash;
const commitDate = new Date(parseInt(commit.committedOn, 10) * 1000).toLocaleDateString('ja-JP');
const commitTime = new Date(parseInt(commit.committedOn, 10) * 1000).toLocaleTimeString('ja-JP');
log('Info', `${shortHash}${chalk.gray(hash.substr(shortHash.length))}`, 'LastCommit');
log('Info', `${commit.subject} ${chalk.green(`(${commitDate} ${commitTime})`)} ${chalk.blue(`<${commit.author.name}>`)}`, 'LastCommit');
} catch (e) {
// noop
log('Info', `No commit information found`, 'LastCommit');
}
log('Info', 'Initializing...');