43 lines
2.0 KiB
JavaScript
43 lines
2.0 KiB
JavaScript
const {promisify} = require('util');
|
|
const {isPlainObject} = require('lodash');
|
|
const importFrom = require('import-from');
|
|
const conventionalChangelogAngular = require('conventional-changelog-angular');
|
|
|
|
/**
|
|
* Load `conventional-changelog-parser` options. Handle presets that return either a `Promise<Array>` or a `Promise<Function>`.
|
|
*
|
|
* @param {Object} pluginConfig The plugin configuration.
|
|
* @param {Object} pluginConfig.preset conventional-changelog preset ('angular', 'atom', 'codemirror', 'ember', 'eslint', 'express', 'jquery', 'jscs', 'jshint')
|
|
* @param {string} pluginConfig.config Requierable npm package with a custom conventional-changelog preset
|
|
* @param {Object} pluginConfig.parserOpts Additionnal `conventional-changelog-parser` options that will overwrite ones loaded by `preset` or `config`.
|
|
* @param {Object} pluginConfig.writerOpts Additionnal `conventional-changelog-writer` options that will overwrite ones loaded by `preset` or `config`.
|
|
* @param {Object} context The semantic-release context.
|
|
* @param {Array<Object>} context.commits The commits to analyze.
|
|
* @param {String} context.cwd The current working directory.
|
|
*
|
|
* @return {Promise<Object>} a `Promise` that resolve to the `conventional-changelog-core` config.
|
|
*/
|
|
module.exports = async ({preset, config, parserOpts, writerOpts, presetConfig}, {cwd}) => {
|
|
let loadedConfig;
|
|
|
|
if (preset) {
|
|
const presetPackage = `conventional-changelog-${preset.toLowerCase()}`;
|
|
loadedConfig = importFrom.silent(__dirname, presetPackage) || importFrom(cwd, presetPackage);
|
|
} else if (config) {
|
|
loadedConfig = importFrom.silent(__dirname, config) || importFrom(cwd, config);
|
|
} else {
|
|
loadedConfig = conventionalChangelogAngular;
|
|
}
|
|
|
|
loadedConfig = await (typeof loadedConfig === 'function'
|
|
? isPlainObject(presetConfig)
|
|
? loadedConfig(presetConfig)
|
|
: promisify(loadedConfig)()
|
|
: loadedConfig);
|
|
|
|
return {
|
|
parserOpts: {...loadedConfig.parserOpts, ...parserOpts},
|
|
writerOpts: {...loadedConfig.writerOpts, ...writerOpts},
|
|
};
|
|
};
|