2020-01-17 09:14:20 +00:00
|
|
|
import { LANGUAGE_NODE } from '../../constants/languages';
|
2020-02-18 07:34:10 +00:00
|
|
|
import * as nodeVersioning from '../../versioning/node';
|
2020-01-17 09:14:20 +00:00
|
|
|
|
2019-07-25 06:17:19 +00:00
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export { getPackageUpdates } from './package';
|
|
|
|
export { updateDependency } from './update';
|
|
|
|
|
2020-01-17 09:14:20 +00:00
|
|
|
export const language = LANGUAGE_NODE;
|
2020-02-07 18:25:27 +00:00
|
|
|
|
|
|
|
export const defaultConfig = {
|
|
|
|
fileMatch: ['^.travis.yml$'],
|
2020-02-18 07:34:10 +00:00
|
|
|
versioning: nodeVersioning.id,
|
2020-02-07 18:25:27 +00:00
|
|
|
};
|