Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.0.9",
"packageManager": "pnpm@11.5.0",
"dependencies": {
"astro-benchmark": "workspace:*"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "fake-data-pkg",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "./index.js"
Expand Down
4 changes: 4 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ publicHoistPattern:
# Wait until three days after release to install new versions of packages
minimumReleaseAge: 4320
minimumReleaseAgeExclude:
# 'fake-data-pkg' is a local package used for testing
- 'fake-data-pkg@1.0.0'
Comment on lines +41 to +42
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need this change to bypass the stricter verification in the newer pnpm version.

# TODO: remove once more stable
- '@flue/*'
- '@astrojs/*'
Expand Down Expand Up @@ -71,6 +73,8 @@ trustPolicyExclude:
# Old dependency of @types/node@22
# TODO: Remove when dropping support for Node 22
- undici-types@6.21.0
# 'fake-data-pkg' is a local package used for testing
- 'fake-data-pkg@1.0.0'
# Dependencies in the docs repo that gets cloned for smoke tests
- 'undici@5.29.0'
- 'algoliasearch@4.27.0'
Expand Down
Loading