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
538 B
TypeScript
16 lines
538 B
TypeScript
import { GitRefsDatasource } from '../../datasource/git-refs';
|
|
import * as gitVersioning from '../../versioning/git';
|
|
|
|
export { default as extractPackageFile } from './extract';
|
|
export { default as updateDependency } from './update';
|
|
export { default as updateArtifacts } from './artifacts';
|
|
|
|
export const url = 'https://git-scm.com/docs/git-submodule';
|
|
|
|
export const defaultConfig = {
|
|
enabled: false,
|
|
versioning: gitVersioning.id,
|
|
fileMatch: ['(^|/)\\.gitmodules$'],
|
|
};
|
|
|
|
export const supportedDatasources = [GitRefsDatasource.id];
|