v1 release

This commit is contained in:
Minsu Lee
2019-10-17 12:29:09 +09:00
parent 48174daa09
commit 8ad0cde66b
1080 changed files with 121377 additions and 6 deletions

25
node_modules/git-last-commit/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
export interface Commit {
shortHash: string;
hash: string;
subject: string;
sanitizedSubject: string;
body: string;
authoredOn: string;
committedOn: string;
author: {
name: string;
email: string;
},
committer: {
name: string;
email: string;
},
notes?: string;
branch: string;
tags: string[];
}
type GetLastCommitCallback = (err: Error, commit: Commit) => void;
export const getLastCommit: (callback: GetLastCommitCallback) => void;