From 8ad936911bb31bab68f67ebba2b45386243c00cb Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 11 May 2026 13:54:13 +0000 Subject: [PATCH] Fix ERR_PNPM_IGNORED_BUILDS CI failure Add pnpm.onlyBuiltDependencies to package.json to allow build scripts for @swc/core, esbuild, and msw transitive dependencies. Resolves: PRI-1150 Co-Authored-By: Paperclip --- package.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package.json b/package.json index f48ccc4..ed9f3c2 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,13 @@ "homepage": "https://github.com/privilegedescalation/headlamp-rook-plugin#readme", "author": "privilegedescalation", "license": "Apache-2.0", + "pnpm": { + "onlyBuiltDependencies": [ + "@swc/core", + "esbuild", + "msw" + ] + }, "scripts": { "start": "headlamp-plugin start", "build": "headlamp-plugin build",