mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
parent
941d06172d
commit
a9f47ca0b0
1 changed files with 5 additions and 1 deletions
|
@ -35,7 +35,6 @@ async function extractDependencies(content, packageFile, config) {
|
|||
: 'app';
|
||||
|
||||
const lockFiles = {
|
||||
yarnrc: '.yarnrc',
|
||||
yarnLock: 'yarn.lock',
|
||||
packageLock: 'package-lock.json',
|
||||
shrinkwrapJson: 'npm-shrinkwrap.json',
|
||||
|
@ -71,6 +70,10 @@ async function extractDependencies(content, packageFile, config) {
|
|||
npmrc = undefined;
|
||||
}
|
||||
}
|
||||
const yarnrc =
|
||||
(await platform.getFile(
|
||||
upath.join(path.dirname(packageFile), '.yarnrc')
|
||||
)) || undefined;
|
||||
|
||||
let lernaDir;
|
||||
let lernaPackages;
|
||||
|
@ -131,6 +134,7 @@ async function extractDependencies(content, packageFile, config) {
|
|||
packageJsonVersion,
|
||||
packageJsonType,
|
||||
npmrc,
|
||||
yarnrc,
|
||||
...lockFiles,
|
||||
lernaDir,
|
||||
lernaClient,
|
||||
|
|
Loading…
Reference in a new issue