35 lines
766 B
JavaScript
35 lines
766 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const chalk = require( 'chalk' );
|
||
|
const { getEntry } = require( './get-entry' );
|
||
|
|
||
|
/* eslint no-console: 0*/
|
||
|
|
||
|
const make = async ( pullRequestFetcher, version ) => {
|
||
|
const pullRequests = await pullRequestFetcher( version );
|
||
|
let entries = await Promise.all(
|
||
|
pullRequests.map( async ( pr ) => await getEntry( pr ) )
|
||
|
);
|
||
|
if ( ! entries || ! entries.length ) {
|
||
|
console.log(
|
||
|
chalk.yellow( "This version doesn't have any associated PR." )
|
||
|
);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
entries = entries.filter( Boolean );
|
||
|
|
||
|
if ( ! entries || ! entries.length ) {
|
||
|
console.log(
|
||
|
chalk.yellow(
|
||
|
'None of the PRs of this version are eligible for the changelog.'
|
||
|
)
|
||
|
);
|
||
|
return;
|
||
|
}
|
||
|
entries.sort();
|
||
|
console.log( entries.join( '\n' ) );
|
||
|
};
|
||
|
|
||
|
module.exports = { make };
|