Update dependency "eslint" to v9.x
v9.39.4
This commit is contained in:
@@ -180,7 +180,9 @@ const createChangelogCommitLine = (commit: Commit): string => {
|
||||
const getContributors = (commits: Commit[]): string[] => [
|
||||
...new Set(
|
||||
commits
|
||||
.map((commit) => commit.authors.map((author) => author.user?.login!).filter((author) => !!author))
|
||||
.map((commit) =>
|
||||
commit.authors.map((author) => author.user?.login).filter((author): author is string => !!author),
|
||||
)
|
||||
.flat(),
|
||||
),
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user