File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export async function analyzeCommits(pluginConfig, context) {
3131 const config = await loadParserConfig ( pluginConfig , context ) ;
3232 let releaseType = null ;
3333
34- const parser = new CommitParser ( config )
34+ const parser = new CommitParser ( config ) ;
3535 const filteredCommits = filterRevertedCommitsSync (
3636 commits
3737 . filter ( ( { message, hash } ) => {
@@ -44,12 +44,12 @@ export async function analyzeCommits(pluginConfig, context) {
4444 } )
4545 . map ( ( rawCommit ) => ( {
4646 ...rawCommit ,
47- ...parser . parse ( rawCommit . message )
47+ ...parser . parse ( rawCommit . message ) ,
4848 } ) )
4949 ) ;
5050
5151 for ( const { message, ...commit } of filteredCommits ) {
52- console . log ( `Analyzing commit: %s` , message )
52+ console . log ( `Analyzing commit: %s` , message ) ;
5353 logger . log ( `Analyzing commit: %s` , message ) ;
5454 let commitReleaseType ;
5555
You can’t perform that action at this time.
0 commit comments