Skip to content

Commit

Permalink
Merge pull request #600 from desktop/expose-generic-overload
Browse files Browse the repository at this point in the history
Expose string|Buffer overload
  • Loading branch information
niik authored Nov 20, 2024
2 parents 86f78cd + e9daa29 commit 48bc3ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions lib/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ export function exec(
path: string,
options?: IGitBufferExecutionOptions
): Promise<IGitBufferResult>
export function exec(
args: string[],
path: string,
options?: IGitExecutionOptions
): Promise<IGitResult>
export function exec(
args: string[],
path: string,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dugite",
"version": "3.0.0-rc4",
"version": "3.0.0-rc5",
"description": "Elegant bindings for Git",
"main": "./build/lib/index.js",
"typings": "./build/lib/index.d.ts",
Expand Down

0 comments on commit 48bc3ad

Please sign in to comment.