mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-17 16:47:05 +00:00
fix: also declare pnpm build-script policy in package.json (#7525)
Some pnpm versions don't read onlyBuiltDependencies / ignoredBuiltDependencies from pnpm-workspace.yaml — leaving CI on plugin repos to fail with ERR_PNPM_IGNORED_BUILDS even after #7523 added the workspace.yaml entries. Mirror the same configuration into package.json's "pnpm" field, which is the older (and more widely supported) location. The two files are kept in sync; whichever pnpm version reads the values picks them up from one or the other. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2a264eacc2
commit
58c8e26eb1
1 changed files with 9 additions and 1 deletions
10
package.json
10
package.json
|
|
@ -50,5 +50,13 @@
|
|||
},
|
||||
"engineStrict": true,
|
||||
"version": "2.6.1",
|
||||
"license": "Apache-2.0"
|
||||
"license": "Apache-2.0",
|
||||
"pnpm": {
|
||||
"onlyBuiltDependencies": [
|
||||
"esbuild"
|
||||
],
|
||||
"ignoredBuiltDependencies": [
|
||||
"@scarf/scarf"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue