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