fix(core): Fix filtering logic for returning only tagged commits
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@foss.global/codefeed',
|
||||
version: '1.5.2',
|
||||
version: '1.5.3',
|
||||
description: 'a module for creating feeds for code development'
|
||||
}
|
||||
|
@ -286,6 +286,9 @@ export class CodeFeed {
|
||||
Published on npm: ${c.publishedOnNpm}
|
||||
`);
|
||||
}
|
||||
|
||||
allCommits = allCommits.filter(commitArg => commitArg.tagged);
|
||||
|
||||
return allCommits;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user