renovate/lib/manager/nvm/package.js
Rhys Arkins dde5756488
feat: .nvmrc files (#1582)
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
2018-03-04 15:52:06 +01:00

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);
}