From 601aecf9159d8f465b97b942c0fef351d0f84fce Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Thu, 5 Aug 2021 22:04:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#54951=20Fix=20runn?= =?UTF-8?q?ing=20tests=20using=20npm=207=20by=20@remcohaszing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By default npm 7 will try to install peer dependencies. This behaviour is different from npm 6 and causes tests to fail for various types packages. --- .npmrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 9cf9495031..4fd15ed117 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,2 @@ -package-lock=false \ No newline at end of file +package-lock=false +legacy-peer-deps=true