mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
2a07e91be6
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
12 lines
347 B
TypeScript
12 lines
347 B
TypeScript
import type { ProgrammingLanguage } from '../../../constants';
|
|
import { NpmDatasource } from '../../datasource/npm';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const language: ProgrammingLanguage = 'js';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)package\\.js$'],
|
|
};
|
|
|
|
export const supportedDatasources = [NpmDatasource.id];
|