mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import { LANGUAGE_JAVASCRIPT } from '../../constants/languages';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const language = LANGUAGE_JAVASCRIPT;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)package.js$'],
|
|
};
|