Merge pull request #5912 from chirag127/fix/pnpm11-allowbuilds-workspace

fix(install): pnpm 11 ERR_PNPM_IGNORED_BUILDS — add allowBuilds to pnpm-workspace.yaml
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-07-03 10:29:08 -03:00
committed by GitHub
2 changed files with 49 additions and 0 deletions

31
pnpm-workspace.yaml Normal file
View File

@@ -0,0 +1,31 @@
packages:
- "open-sse"
allowBuilds:
"@parcel/watcher": true
"@swc/core": true
better-sqlite3: true
core-js: true
esbuild: true
keytar: true
koffi: true
libxmljs2: true
onnxruntime-node: true
protobufjs: true
sharp: true
tls-client-node: true
unrs-resolver: true
onlyBuiltDependencies:
- "@parcel/watcher"
- "@swc/core"
- "better-sqlite3"
- "core-js"
- "esbuild"
- "keytar"
- "koffi"
- "libxmljs2"
- "onnxruntime-node"
- "omniroute"
- "protobufjs"
- "sharp"
- "tls-client-node"
- "unrs-resolver"

18
pnpm.json Normal file
View File

@@ -0,0 +1,18 @@
{
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"better-sqlite3",
"core-js",
"esbuild",
"keytar",
"koffi",
"libxmljs2",
"omniroute",
"onnxruntime-node",
"protobufjs",
"sharp",
"tls-client-node",
"unrs-resolver"
]
}