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';
|
: 'app';
|
||||||
|
|
||||||
const lockFiles = {
|
const lockFiles = {
|
||||||
yarnrc: '.yarnrc',
|
|
||||||
yarnLock: 'yarn.lock',
|
yarnLock: 'yarn.lock',
|
||||||
packageLock: 'package-lock.json',
|
packageLock: 'package-lock.json',
|
||||||
shrinkwrapJson: 'npm-shrinkwrap.json',
|
shrinkwrapJson: 'npm-shrinkwrap.json',
|
||||||
|
@ -71,6 +70,10 @@ async function extractDependencies(content, packageFile, config) {
|
||||||
npmrc = undefined;
|
npmrc = undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const yarnrc =
|
||||||
|
(await platform.getFile(
|
||||||
|
upath.join(path.dirname(packageFile), '.yarnrc')
|
||||||
|
)) || undefined;
|
||||||
|
|
||||||
let lernaDir;
|
let lernaDir;
|
||||||
let lernaPackages;
|
let lernaPackages;
|
||||||
|
@ -131,6 +134,7 @@ async function extractDependencies(content, packageFile, config) {
|
||||||
packageJsonVersion,
|
packageJsonVersion,
|
||||||
packageJsonType,
|
packageJsonType,
|
||||||
npmrc,
|
npmrc,
|
||||||
|
yarnrc,
|
||||||
...lockFiles,
|
...lockFiles,
|
||||||
lernaDir,
|
lernaDir,
|
||||||
lernaClient,
|
lernaClient,
|
||||||
|
|
Loading…
Reference in a new issue