mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
13 lines
400 B
TypeScript
13 lines
400 B
TypeScript
import { LANGUAGE_ELIXIR } from '../../constants/languages';
|
|
import * as hexVersioning from '../../versioning/hex';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateDependency } from './update';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const language = LANGUAGE_ELIXIR;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)mix\\.exs$'],
|
|
versioning: hexVersioning.id,
|
|
};
|