fix: add debug logs for plugins resolved options
This commit is contained in:
parent
a99355effa
commit
6d0bd8c9b1
@ -1,4 +1,5 @@
|
|||||||
const {isPlainObject, isFunction, noop, cloneDeep, omit} = require('lodash');
|
const {isPlainObject, isFunction, noop, cloneDeep, omit} = require('lodash');
|
||||||
|
const debug = require('debug')('semantic-release:plugins');
|
||||||
const getError = require('../get-error');
|
const getError = require('../get-error');
|
||||||
const {extractErrors} = require('../utils');
|
const {extractErrors} = require('../utils');
|
||||||
const PLUGINS_DEFINITIONS = require('../definitions/plugins');
|
const PLUGINS_DEFINITIONS = require('../definitions/plugins');
|
||||||
@ -14,6 +15,8 @@ module.exports = (context, type, pluginOpt, pluginsPath) => {
|
|||||||
const pluginName = name.pluginName ? name.pluginName : isFunction(name) ? `[Function: ${name.name}]` : name;
|
const pluginName = name.pluginName ? name.pluginName : isFunction(name) ? `[Function: ${name.name}]` : name;
|
||||||
const plugin = loadPlugin(context, name, pluginsPath);
|
const plugin = loadPlugin(context, name, pluginsPath);
|
||||||
|
|
||||||
|
debug(`options for ${pluginName}/${type}: %O`, config);
|
||||||
|
|
||||||
let func;
|
let func;
|
||||||
if (isFunction(plugin)) {
|
if (isFunction(plugin)) {
|
||||||
func = plugin.bind(null, cloneDeep({...options, ...config}));
|
func = plugin.bind(null, cloneDeep({...options, ...config}));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user