From ef2e67b4b1eef19fb79c55b7c35cdc6dab16f1e5 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Sun, 31 Mar 2019 11:03:23 +0200
Subject: [PATCH] fix(yarn): strip frozen-lockfile from yarnrc

Closes https://github.com/renovatebot/config-help/issues/195
---
 lib/manager/npm/post-update/index.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/manager/npm/post-update/index.js b/lib/manager/npm/post-update/index.js
index 6734a858eb..840cc5e3dc 100644
--- a/lib/manager/npm/post-update/index.js
+++ b/lib/manager/npm/post-update/index.js
@@ -189,6 +189,7 @@ async function writeExistingFiles(config, packageFiles) {
         upath.join(basedir, '.yarnrc'),
         packageFile.yarnrc
           .replace('--install.pure-lockfile true', '')
+          .replace('--install.frozen-lockfile true', '')
           .replace(/^yarn-path.*$/m, '')
       );
     }
-- 
GitLab