Skip to content

Commit

Permalink
Update dependency simple-git to v3.21.0 (#90)
Browse files Browse the repository at this point in the history
* Update dependency simple-git to v3.21.0

* Update dist

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sqbot <[email protected]>
Co-authored-by: Atsushi Watanabe <[email protected]>
  • Loading branch information
3 people authored Dec 11, 2023
1 parent 0c45a43 commit 794ef63
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
18 changes: 17 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5747,6 +5747,21 @@ var init_commit = __esm({
}
});

// src/lib/tasks/first-commit.ts
function first_commit_default() {
return {
firstCommit() {
return this._runTask(straightThroughStringTask(["rev-list", "--max-parents=0", "HEAD"], true), trailingFunctionArgument(arguments));
}
};
}
var init_first_commit = __esm({
"src/lib/tasks/first-commit.ts"() {
init_utils();
init_task();
}
});

// src/lib/tasks/hash-object.ts
function hashObjectTask(filePath, write) {
const commands = ["hash-object", filePath];
Expand Down Expand Up @@ -6767,6 +6782,7 @@ var init_simple_git_api = __esm({
init_checkout();
init_commit();
init_config();
init_first_commit();
init_grep();
init_hash_object();
init_init();
Expand Down Expand Up @@ -6840,7 +6856,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(), show_default(), version_default());
Object.assign(SimpleGitApi.prototype, checkout_default(), commit_default(), config_default(), first_commit_default(), grep_default(), log_default(), show_default(), version_default());
}
});

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.1",
"extract-pr-titles": "1.1.0",
"simple-git": "3.20.0"
"simple-git": "3.21.0"
},
"devDependencies": {
"@vercel/ncc": "0.38.1",
Expand Down

0 comments on commit 794ef63

Please sign in to comment.