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
617 B
TypeScript
16 lines
617 B
TypeScript
import { HermitDatasource } from '../../datasource/hermit';
|
|
import { id as versionId } from '../../versioning/hermit';
|
|
import { defaultConfig as partialDefaultConfig } from './default-config';
|
|
export { updateArtifacts } from './artifacts';
|
|
export { extractPackageFile } from './extract';
|
|
export { updateDependency } from './update';
|
|
|
|
export const url = 'https://cashapp.github.io/hermit';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: partialDefaultConfig.fileMatch,
|
|
excludeCommitPaths: partialDefaultConfig.excludeCommitPaths,
|
|
versioning: versionId,
|
|
};
|
|
|
|
export const supportedDatasources = [HermitDatasource.id];
|