From 093f1697e1376ee7827180df720a55d832952a4f Mon Sep 17 00:00:00 2001 From: Alois Klink Date: Sat, 25 Mar 2023 21:16:45 +0000 Subject: [PATCH] build: remove inline-specifiers pnpm option Remove the `use-inline-specifiers-lockfile-format=true` pnpm option from our `.npmrc` file. This was added in [PNPM version v7.7.0](https://github.com/pnpm/pnpm/releases/tag/v7.7.0) and should make our `pnpm-lock.yaml` file much nicer, but unfortunately, renovate doesn't seem to support it (unsure why?). This means that whenever we do a `pnpm install` locally, the lock-file gets changed, and whenever renovate makes a PR, it changes the lock-file back. This causes a lot of unnecassary merge conflicts. --- .npmrc | 1 - 1 file changed, 1 deletion(-) diff --git a/.npmrc b/.npmrc index 289684302..4c2f52b3b 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,2 @@ auto-install-peers=true strict-peer-dependencies=false -use-inline-specifiers-lockfile-format=true