mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
23 lines
703 B
TypeScript
23 lines
703 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GoDatasource } from '../../datasource/go';
|
|
import { GolangVersionDatasource } from '../../datasource/golang-version';
|
|
import { updateArtifacts } from './artifacts';
|
|
import { extractPackageFile } from './extract';
|
|
import { updateDependency } from './update';
|
|
|
|
export { extractPackageFile, updateDependency, updateArtifacts };
|
|
|
|
export const displayName = 'Go Modules';
|
|
export const url = 'https://go.dev/ref/mod';
|
|
export const categories: Category[] = ['golang'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)go\\.mod$'],
|
|
pinDigests: false,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
GoDatasource.id,
|
|
GolangVersionDatasource.id,
|
|
];
|