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
503 B
TypeScript
15 lines
503 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const name = 'Dev Container';
|
|
export const url =
|
|
'https://code.visualstudio.com/docs/devcontainers/containers';
|
|
export const categories: Category[] = ['docker'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['^.devcontainer/devcontainer.json$', '^.devcontainer.json$'],
|
|
};
|
|
|
|
export const supportedDatasources = [DockerDatasource.id];
|