Removes hard dependency on donjayamanne.githistory

Provides optional additional code lens
This commit is contained in:
Eric Amodio
2016-08-31 21:24:03 -04:00
parent 70cc92ddd6
commit ea33560f14
4 changed files with 15 additions and 8 deletions

View File

@@ -1,7 +1,8 @@
'use strict'
export type WorkspaceState = 'repoPath';
export type WorkspaceState = 'hasGitHistoryExtension' | 'repoPath';
export const WorkspaceState = {
HasGitHistoryExtension: 'hasGitHistoryExtension' as WorkspaceState,
RepoPath: 'repoPath' as WorkspaceState
}