Skip to content

Commit

Permalink
Update dependency simple-git to v3.18.0 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 22, 2023
1 parent 6a50ce3 commit b23588a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 12 deletions.
29 changes: 25 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6476,6 +6476,29 @@ var init_push = __esm({
}
});

// src/lib/tasks/show.ts
function show_default() {
return {
showBuffer() {
const commands = ["show", ...getTrailingOptions(arguments, 1)];
if (!commands.includes("--binary")) {
commands.splice(1, 0, "--binary");
}
return this._runTask(straightThroughBufferTask(commands), trailingFunctionArgument(arguments));
},
show() {
const commands = ["show", ...getTrailingOptions(arguments, 1)];
return this._runTask(straightThroughStringTask(commands), trailingFunctionArgument(arguments));
}
};
}
var init_show = __esm({
"src/lib/tasks/show.ts"() {
init_utils();
init_task();
}
});

// src/lib/responses/FileStatusSummary.ts
var fromPathRegex, FileStatusSummary;
var init_FileStatusSummary = __esm({
Expand Down Expand Up @@ -6725,6 +6748,7 @@ var init_simple_git_api = __esm({
init_log();
init_merge();
init_push();
init_show();
init_status();
init_task();
init_version();
Expand Down Expand Up @@ -6791,7 +6815,7 @@ var init_simple_git_api = __esm({
return this._runTask(statusTask(getTrailingOptions(arguments)), trailingFunctionArgument(arguments));
}
};
Object.assign(SimpleGitApi.prototype, checkout_default(), commit_default(), config_default(), grep_default(), log_default(), version_default());
Object.assign(SimpleGitApi.prototype, checkout_default(), commit_default(), config_default(), grep_default(), log_default(), show_default(), version_default());
}
});

Expand Down Expand Up @@ -7724,9 +7748,6 @@ var require_git = __commonJS({
const commands = ["rev-parse", ...getTrailingOptions2(arguments, true)];
return this._runTask(straightThroughStringTask2(commands, true), trailingFunctionArgument2(arguments));
};
Git2.prototype.show = function(options, then) {
return this._runTask(straightThroughStringTask2(["show", ...getTrailingOptions2(arguments, 1)]), trailingFunctionArgument2(arguments));
};
Git2.prototype.clean = function(mode, options, then) {
const usingCleanOptionsArray = isCleanOptionsArray2(mode);
const cleanMode = usingCleanOptionsArray && mode.join("") || filterType2(mode, filterString2) || "";
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@actions/core": "1.10.0",
"extract-pr-titles": "1.1.0",
"simple-git": "3.17.0"
"simple-git": "3.18.0"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
Expand Down

0 comments on commit b23588a

Please sign in to comment.