mirror of https://github.com/renovatebot/renovate
18 lines
535 B
TypeScript
18 lines
535 B
TypeScript
import { HexDatasource } from '../../datasource/hex';
|
|
import * as hexVersioning from '../../versioning/hex';
|
|
|
|
export const displayName = 'gleam';
|
|
export const url = 'https://gleam.run/';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
export { getRangeStrategy } from './range';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)gleam.toml$'],
|
|
versioning: hexVersioning.id,
|
|
};
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
export const supportedDatasources = [HexDatasource.id];
|