renovate/lib/manager/meteor/index.js
Rhys Arkins c356bb0349
feat: custom filenames for package files (#1894)
Renovate now comes with a variety of package managers supported, each with their own filename pattern(s). These patterns are now exposed for user configuration through the new `fileMatch` list/array configuration option, which has been added to each manager (npm, bazel, docker-compose, etc). `fileMatch` is defined as a mergeable list, meaning that users can add to the default pattern to extend the files being detected.

Closes #799
2018-04-30 13:18:51 +02:00

12 lines
336 B
JavaScript

const { extractDependencies } = require('./extract');
const { getPackageUpdates } = require('../npm/package');
const { updateDependency } = require('./update');
const contentPattern = new RegExp('(^|\\n)\\s*Npm.depends\\(\\s*{');
module.exports = {
contentPattern,
extractDependencies,
getPackageUpdates,
updateDependency,
};