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>
15 lines
465 B
TypeScript
15 lines
465 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { AzureBicepResourceDatasource } from '../../datasource/azure-bicep-resource';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url =
|
|
'https://docs.microsoft.com/azure/azure-resource-manager/bicep/overview';
|
|
export const categories: Category[] = ['iac'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['\\.bicep$'],
|
|
};
|
|
|
|
export const supportedDatasources = [AzureBicepResourceDatasource.id];
|