From 558451da2d66f2e47a867e0f1ee59ade8f63b02b Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Thu, 10 Sep 2026 14:34:43 +0000 Subject: [PATCH] build: set verifyDepsBeforeRun to warn in pnpm workspace configuration The default 'install' setting causes unexpected lockfile updates during `pnpm ng-dev pr merge`. Setting it to `warn` prevents automatic dependency installation while still alerting if dependencies are out of sync. --- pnpm-workspace.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index b9922b2af3b2..fa4b796af998 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -57,3 +57,6 @@ allowBuilds: puppeteer: false utf-8-validate: false webdriver-manager: true + +# Workaround as the default 'install' causes problems during `pnpm ng-dev pr merge` as the lockfile is updated. +verifyDepsBeforeRun: warn