From afcb36a05282ddc1877585581212e63f3aded11e Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Mon, 15 Sep 2025 20:11:12 +0200 Subject: [PATCH] DEV: prevent pnpm to ask for update (#34808) We set the version of `pnpm` in `.tool-versions` so it's not desirable to prompt people for an update, even if updated it won't be used. https://docs.npmjs.com/cli/v8/using-npm/config#update-notifier https://github.com/pnpm/pnpm/pull/4285 --- .npmrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.npmrc b/.npmrc index 16e9c48b18f..5ff9ef31a66 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,4 @@ engine-strict = true auto-install-peers = false ignore-workspace-cycles = true +update-notifier = false