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

Copilot AI 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)
# before
ignoredBuiltDependencies:
  - '@parcel/watcher'
  - '@tailwindcss/oxide'
  - esbuild
  - unrs-resolver
  - vue-demi
onlyBuiltDependencies:
  - better-sqlite3
  - sharp

# after
ignoredBuiltDependencies:
  - core-js
  - protobufjs
  - vue-demi
onlyBuiltDependencies:
  - '@parcel/watcher'
  - better-sqlite3
  - esbuild
  - sharp
  - unrs-resolver

Copilot AI requested a review from TechWatching June 17, 2026 09:06
@renovate renovate Bot force-pushed the renovate/pnpm-11.x branch 3 times, most recently from 44dce77 to a87f5c5 Compare June 24, 2026 18:08
@renovate renovate Bot force-pushed the renovate/pnpm-11.x branch 2 times, most recently from e80f078 to 427d483 Compare July 10, 2026 22:56
Sign up for free to 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