From 2e1506958f0a01c26f32d494850b1e442fe0979c Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Wed, 10 May 2023 08:53:39 +0200 Subject: [PATCH] pnpm: remove update notifier message (#51630) Having a bit fat dialog printed everytime I run pnpm install is a bit annoying. I believe we manage the version used, so we don't actually want to be using the latest on NPM. IE this dialog was misleading. Test Plan: pnpm install didn't show the upgrade dialog. --- .npmrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.npmrc b/.npmrc index 1eaf028a47d..e268a52711b 100644 --- a/.npmrc +++ b/.npmrc @@ -16,3 +16,6 @@ public-hoist-pattern[]=global public-hoist-pattern[]=*eslint* auto-install-peers=true + +# We manage the version of pnpm so the update warnings based on NPM is inaccurate. +update-notifier=false