forked from mhutchie/vscode-git-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mhutchie#372 Improved handling of repositories on Mapped Network Driv…
…es on Windows with Git >= 2.25.0.
- Loading branch information
Showing
7 changed files
with
196 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* This file contains types for additional methods used by Git Graph, that were added between the | ||
* version of @types/node (8.10.62) and the version of Node.js (10.11.0) used by the minimum | ||
* version of Visual Studio Code that Git Graph supports. Unfortunately @types/node 10.11.0 can't | ||
* be used, as it is not compatible with Typescript >= 3.7.2. Once the minimum version of Visual | ||
* Studio Code that Git Graph supports is increased, such that it's version of @types/node is | ||
* compatible with Typescript >= 3.7.2, @types/node will be updated, and this file will be removed. | ||
*/ | ||
declare module 'fs' { | ||
namespace realpath { | ||
function native(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.