Skip to content

Commit 4b7a97b

Browse files
Update pnpm to v11 (#608)
* Update pnpm to v11 * Migrate onlyBuiltDependencies to allowBuilds for pnpm v11 pnpm v11 removed onlyBuiltDependencies in favor of allowBuilds (a map of package name to boolean). Without this rename, pnpm 11 errors out with ERR_PNPM_IGNORED_BUILDS for dtrace-provider, esbuild, nx, and sqlite3. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Steve Larson <9larsons@gmail.com>
1 parent b56412f commit 4b7a97b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"author": "Ghost Foundation",
88
"license": "MIT",
9-
"packageManager": "pnpm@10.33.4",
9+
"packageManager": "pnpm@11.1.2",
1010
"scripts": {
1111
"dev": "echo \"Implement me!\"",
1212
"main": "git checkout main && git pull && pnpm install",

pnpm-workspace.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ overrides:
44
node-loggly-bulk: ^4.0.2
55
axios: ^1.15.0
66
fast-xml-parser: ^5.7.0
7-
onlyBuiltDependencies:
8-
- dtrace-provider
9-
- esbuild
10-
- nx
11-
- sqlite3
7+
allowBuilds:
8+
dtrace-provider: true
9+
esbuild: true
10+
nx: true
11+
sqlite3: true
1212
minimumReleaseAge: 1440
1313
catalog:
1414
sinon: 22.0.0

0 commit comments

Comments
 (0)