From 33a8414c3577488674d2ec78da5bd92ebce782ab Mon Sep 17 00:00:00 2001 From: Suren K Date: Wed, 1 Oct 2025 16:52:03 -0500 Subject: [PATCH] fix: Add --legacy-peer-deps to Maven npm install - Add --legacy-peer-deps flag to Maven exec plugin npm install - Resolves ERESOLVE TypeScript dependency conflicts in Docker build - Allows npm to use legacy dependency resolution algorithm - Fixes conflicting peer dependencies between Angular 17 packages - Ensures Maven build completes successfully in Docker --- examples/basicauthentication/pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/basicauthentication/pom.xml b/examples/basicauthentication/pom.xml index 5ddaa0aa..b34a7886 100644 --- a/examples/basicauthentication/pom.xml +++ b/examples/basicauthentication/pom.xml @@ -199,6 +199,7 @@ npm install + --legacy-peer-deps