mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-16 09:36:26 +00:00
0f6772e699
Closes #2799
72 lines
1.9 KiB
JavaScript
72 lines
1.9 KiB
JavaScript
const is = require('@sindresorhus/is');
|
|
const deepcopy = require('deepcopy');
|
|
const options = require('./definitions').getOptions();
|
|
|
|
let allowedStrings;
|
|
|
|
module.exports = {
|
|
massageConfig,
|
|
};
|
|
|
|
// Returns a massaged config
|
|
function massageConfig(config) {
|
|
if (!allowedStrings) {
|
|
allowedStrings = [];
|
|
options.forEach(option => {
|
|
if (option.allowString) {
|
|
allowedStrings.push(option.name);
|
|
}
|
|
});
|
|
}
|
|
const massagedConfig = deepcopy(config);
|
|
for (const [key, val] of Object.entries(config)) {
|
|
if (allowedStrings.includes(key) && is.string(val)) {
|
|
massagedConfig[key] = [val];
|
|
} else if (key === 'npmToken' && val && val.length < 30) {
|
|
massagedConfig.npmrc = `//registry.npmjs.org/:_authToken=${val}\n`;
|
|
delete massagedConfig.npmToken;
|
|
} else if (is.array(val)) {
|
|
massagedConfig[key] = [];
|
|
val.forEach(item => {
|
|
if (is.object(item)) {
|
|
massagedConfig[key].push(massageConfig(item));
|
|
} else {
|
|
massagedConfig[key].push(item);
|
|
}
|
|
});
|
|
} else if (is.object(val)) {
|
|
massagedConfig[key] = massageConfig(val);
|
|
}
|
|
}
|
|
if (massagedConfig.packageRules) {
|
|
const newRules = [];
|
|
const updateTypes = [
|
|
'major',
|
|
'minor',
|
|
'patch',
|
|
'pin',
|
|
'digest',
|
|
'lockFileMaintenance',
|
|
'rollback',
|
|
];
|
|
for (const rule of massagedConfig.packageRules) {
|
|
newRules.push(rule);
|
|
for (const [key, val] of Object.entries(rule)) {
|
|
if (updateTypes.includes(key)) {
|
|
const newRule = deepcopy(rule);
|
|
newRule.updateTypes = rule.updateTypes || [];
|
|
newRule.updateTypes.push(key);
|
|
Object.assign(newRule, val);
|
|
newRules.push(newRule);
|
|
}
|
|
}
|
|
}
|
|
for (const rule of newRules) {
|
|
updateTypes.forEach(updateType => {
|
|
delete rule[updateType];
|
|
});
|
|
}
|
|
massagedConfig.packageRules = newRules;
|
|
}
|
|
return massagedConfig;
|
|
}
|