File tree 1 file changed +3
-3
lines changed
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) {
31
31
const config = await loadParserConfig ( pluginConfig , context ) ;
32
32
let releaseType = null ;
33
33
34
- const parser = new CommitParser ( config )
34
+ const parser = new CommitParser ( config ) ;
35
35
const filteredCommits = filterRevertedCommitsSync (
36
36
commits
37
37
. filter ( ( { message, hash } ) => {
@@ -44,12 +44,12 @@ export async function analyzeCommits(pluginConfig, context) {
44
44
} )
45
45
. map ( ( rawCommit ) => ( {
46
46
...rawCommit ,
47
- ...parser . parse ( rawCommit . message )
47
+ ...parser . parse ( rawCommit . message ) ,
48
48
} ) )
49
49
) ;
50
50
51
51
for ( const { message, ...commit } of filteredCommits ) {
52
- console . log ( `Analyzing commit: %s` , message )
52
+ console . log ( `Analyzing commit: %s` , message ) ;
53
53
logger . log ( `Analyzing commit: %s` , message ) ;
54
54
let commitReleaseType ;
55
55
You can’t perform that action at this time.
0 commit comments