mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
16 lines
512 B
TypeScript
16 lines
512 B
TypeScript
import { HexDatasource } from '../../datasource/hex';
|
|
import * as hexVersioning from '../../versioning/hex';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
export { getRangeStrategy } from './range';
|
|
|
|
export const url = 'https://gleam.run/documentation';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)gleam.toml$'],
|
|
versioning: hexVersioning.id,
|
|
};
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
export const supportedDatasources = [HexDatasource.id];
|