mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 22:29:06 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
import { GitRefsDatasource } from '../../datasource/git-refs';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const url = 'https://nix.dev';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)flake\\.nix$'],
|
|
commitMessageTopic: 'nixpkgs',
|
|
commitMessageExtra: 'to {{newValue}}',
|
|
enabled: false,
|
|
};
|
|
|
|
export const supportedDatasources = [GitRefsDatasource.id];
|