From bfd981de1371af973c6795ef37719f5fc696f596 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 13 May 2026 18:54:38 +0200 Subject: [PATCH] fix(ci): restore allowBuilds map in pnpm-workspace.yaml pnpm 11.x reads the per-package allowBuilds boolean map, not the pnpm 10 onlyBuiltDependencies arrays. The array form is silently ignored, so every build script falls through as 'ignored' and strict CI mode fails. Confirmed by reproducing locally and by inspecting what 'pnpm approve-builds --all' writes back. --- pnpm-workspace.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index fb91034..1597203 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,8 +1,7 @@ -onlyBuiltDependencies: - - '@parcel/watcher' - - esbuild - - fsevents - - sharp - - vue-demi -ignoredBuiltDependencies: - - core-js +allowBuilds: + '@parcel/watcher': true + core-js: true + esbuild: true + fsevents: true + sharp: true + vue-demi: true