mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-24 05:26:25 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
23 lines
769 B
TypeScript
23 lines
769 B
TypeScript
import os from 'os';
|
|
import is from '@sindresorhus/is';
|
|
import upath from 'upath';
|
|
import { logger } from '../../../logger';
|
|
import { readFile } from '../../../util/fs';
|
|
import type { GlobalManagerConfig } from '../types';
|
|
|
|
export async function detectGlobalConfig(): Promise<GlobalManagerConfig> {
|
|
const res: GlobalManagerConfig = {};
|
|
const homedir = os.homedir();
|
|
const npmrcFileName = upath.join(homedir, '.npmrc');
|
|
try {
|
|
const npmrc = await readFile(npmrcFileName, 'utf8');
|
|
if (is.nonEmptyString(npmrc)) {
|
|
res.npmrc = npmrc;
|
|
res.npmrcMerge = true;
|
|
logger.debug(`Detected ${npmrcFileName} and adding it to global config`);
|
|
}
|
|
} catch (err) {
|
|
logger.warn({ npmrcFileName }, 'Error reading .npmrc file');
|
|
}
|
|
return res;
|
|
}
|