mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
dde5756488
Adds initial support for `.nvmrc` renovation. If the existing value is a fully-specified semver version then it will be upgraded, otherwise left alone. Closes #1270
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
const nodeManager = require('../_helpers/node/package');
|
|
|
|
module.exports = {
|
|
getPackageUpdates,
|
|
};
|
|
|
|
function getPackageUpdates(config) {
|
|
logger.debug('nvm.getPackageUpdates()');
|
|
return nodeManager.getPackageUpdates(config);
|
|
}
|