Skip to content

Commit 41063f6

Browse files
committed
remove unused function and editorconfig
1 parent b645ada commit 41063f6

File tree

2 files changed

+0
-35
lines changed

2 files changed

+0
-35
lines changed

.editorconfig

Lines changed: 0 additions & 30 deletions
This file was deleted.

packages/core/src/git.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -877,11 +877,6 @@ export default class Git {
877877
return execPromise("git", ["describe", "--tags", "--abbrev=0", since]);
878878
}
879879

880-
/** Get the latest released in the git tree with the provided glob pattern */
881-
async getLatestReleasedTagWithPattern(pattern?: string) {
882-
return execPromise("git", ["describe", "--tags", "--abbrev=0", "--match", `${pattern}*`]);
883-
}
884-
885880
/** Get the tag before latest in the git tree */
886881
async getPreviousTagInBranch() {
887882
const latest = await this.getLatestTagInBranch();

0 commit comments

Comments
 (0)