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>
14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { NpmDatasource } from '../../datasource/npm';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://docs.meteor.com';
|
|
export const categories: Category[] = ['js'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)package\\.js$'],
|
|
};
|
|
|
|
export const supportedDatasources = [NpmDatasource.id];
|