Skip to content

fix: update pnpm-workspace.yaml to resolve ERR_PNPM_IGNORED_BUILDS - #147

Draft
TechWatching with Copilot wants to merge 2 commits into
renovate/pnpm-11.xfrom
copilot/fix-ci-ubuntu-latest-22
Draft

fix: update pnpm-workspace.yaml to resolve ERR_PNPM_IGNORED_BUILDS#147
TechWatching with Copilot wants to merge 2 commits into
renovate/pnpm-11.xfrom
copilot/fix-ci-ubuntu-latest-22

Conversation

CopilotAI commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

pnpm now requires every package with build scripts to be explicitly listed in either ignoredBuiltDependencies or onlyBuiltDependencies. New transitive deps core-js and protobufjs had build scripts but were absent from both lists, causing pnpm install to exit with ERR_PNPM_IGNORED_BUILDS.

Changes

  • pnpm-workspace.yaml
    • Move @parcel/watcher, esbuild, unrs-resolver from ignoredBuiltDependenciesonlyBuiltDependencies (these must build)
    • Add core-js and protobufjs to ignoredBuiltDependencies (build scripts not needed)
    • Remove @tailwindcss/oxide (no longer a dependency)
# beforeignoredBuiltDependencies:
- '@parcel/watcher'
- '@tailwindcss/oxide'
- esbuild
- unrs-resolver
- vue-demionlyBuiltDependencies:
- better-sqlite3
- sharp# afterignoredBuiltDependencies:
- core-js
- protobufjs
- vue-demionlyBuiltDependencies:
- '@parcel/watcher'
- better-sqlite3
- esbuild
- sharp
- unrs-resolver

CopilotAI requested a review from TechWatchingJune 17, 2026 09:06
@renovate
renovateBotforce-pushed the renovate/pnpm-11.x branch 3 times, most recently from 44dce77 to a87f5c5CompareJune 24, 2026 18:08
@renovate
renovateBotforce-pushed the renovate/pnpm-11.x branch 2 times, most recently from e80f078 to 427d483CompareJuly 10, 2026 22:56
@renovate
renovateBotforce-pushed the renovate/pnpm-11.x branch 6 times, most recently from ccd1fbe to 57d8029CompareJuly 19, 2026 15:12
@renovate
renovateBotforce-pushed the renovate/pnpm-11.x branch 3 times, most recently from 17ad41e to a67a978CompareJuly 24, 2026 19:58
@renovate
renovateBotforce-pushed the renovate/pnpm-11.x branch 3 times, most recently from 608f3b0 to ea0227fCompareAugust 4, 2026 15:53
@renovate
renovateBotforce-pushed the renovate/pnpm-11.x branch 4 times, most recently from 02dab9d to 8400ed1CompareAugust 16, 2026 22:32
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@TechWatching