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.
This commit is contained in:
Julien Calixte
2026-05-13 18:54:38 +02:00
parent 453332513a
commit bfd981de13

View File

@@ -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