Adds the options `extends`, which can be defined via configuration file or CLI arguments to a single path or an array of paths of shareable configuration. A shareable configuration is a file or a module that can be loaded with `require`. Options is defined by merging in the following order of priority: - CLI/API - Configuration file - Shareable configuration (from right to left) Options set in a shareable configuration can be unset by setting it to `null` or `undefined` in the main configuration file. If a default value applies to this property it will be used.
32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
const {isArray, isObject, omit} = require('lodash');
|
|
const SemanticReleaseError = require('@semantic-release/error');
|
|
const PLUGINS_DEFINITION = require('./definitions');
|
|
const pipeline = require('./pipeline');
|
|
const normalize = require('./normalize');
|
|
|
|
module.exports = (options, pluginsPath, logger) =>
|
|
Object.keys(PLUGINS_DEFINITION).reduce((plugins, pluginType) => {
|
|
const {config, output, default: def} = PLUGINS_DEFINITION[pluginType];
|
|
let pluginConfs;
|
|
if (options[pluginType]) {
|
|
// If an object is passed and the path is missing, set the default one for single plugins
|
|
if (isObject(options[pluginType]) && !options[pluginType].path && !isArray(def)) {
|
|
options[pluginType].path = def;
|
|
}
|
|
if (config && !config.validator(options[pluginType])) {
|
|
throw new SemanticReleaseError(config.message, 'EPLUGINCONF');
|
|
}
|
|
pluginConfs = options[pluginType];
|
|
} else {
|
|
pluginConfs = def;
|
|
}
|
|
|
|
const globalOpts = omit(options, Object.keys(PLUGINS_DEFINITION));
|
|
|
|
plugins[pluginType] = isArray(pluginConfs)
|
|
? pipeline(pluginConfs.map(conf => normalize(pluginType, pluginsPath, globalOpts, conf, logger, output)))
|
|
: normalize(pluginType, pluginsPath, globalOpts, pluginConfs, logger, output);
|
|
|
|
return plugins;
|
|
}, {});
|