diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-01-03 06:03:19 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-01-03 06:03:19 +0900 |
| commit | e52885bfe406cd267a598560a494df1e67c3384f (patch) | |
| tree | 398615cac3341f049cda9561a58bb4692425f7a8 /src/utils | |
| parent | Add @types/is-root (diff) | |
| download | sharkey-e52885bfe406cd267a598560a494df1e67c3384f.tar.gz sharkey-e52885bfe406cd267a598560a494df1e67c3384f.tar.bz2 sharkey-e52885bfe406cd267a598560a494df1e67c3384f.zip | |
:sparkles:
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/lastCommitInfo.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/lastCommitInfo.ts b/src/utils/lastCommitInfo.ts index ac62f22be6..9682365dad 100644 --- a/src/utils/lastCommitInfo.ts +++ b/src/utils/lastCommitInfo.ts @@ -1,7 +1,7 @@ import Logger from './logger'; import * as chalk from 'chalk'; -const prominence = require('prominence'); -const git = require('git-last-commit'); +import prominence = require('prominence'); +import git = require('git-last-commit'); export default class { static async show(): Promise<void> { |