From 28bf57060b3a1aa151427fd6aee79cb5c6e0a94b Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 14:03:56 +0000 Subject: [PATCH] fix: restore pnpm.overrides from main to fix ERR_PNPM_LOCKFILE_CONFIG_MISMATCH (PRI-726) --- package.json | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 73b28ed..5a3ccda 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@privilegedescalation/headlamp-argocd-plugin", "version": "0.1.2", - "description": "Headlamp plugin for ArgoCD visibility — monitors ArgoCD Applications, Rollouts, and health status", + "description": "Headlamp plugin for ArgoCD visibility \u2014 monitors ArgoCD Applications, Rollouts, and health status", "repository": { "type": "git", "url": "https://github.com/privilegedescalation/headlamp-argocd-plugin.git" @@ -23,12 +23,23 @@ "format": "prettier --write src/", "format:check": "prettier --check src/", "test": "vitest run", -"test:watch": "vitest", + "test:watch": "vitest", "e2e": "playwright test", "e2e:headed": "playwright test --headed" }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "pnpm": { + "overrides": { + "tar": "^7.5.11", + "undici": "^7.24.3", + "flatted": "^3.4.2", + "elliptic": ">=6.6.1" + } + }, "devDependencies": { - "@playwright/test": "^1.58.2", "@kinvolk/headlamp-plugin": "^0.13.0", "@mui/material": "^5.15.14", "@testing-library/jest-dom": "^6.4.8", @@ -45,6 +56,7 @@ "react-dom": "^18.3.1", "react-router-dom": "^5.3.0", "typescript": "~5.6.2", - "vitest": "^3.0.5" + "vitest": "^3.0.5", + "@playwright/test": "^1.58.2" } }