-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Labels
Description
Verify latest release
- I verified that the issue exists in the latest pnpm release
pnpm version
No response
Which area(s) of pnpm are affected? (leave empty if unsure)
Dependencies resolver
Link to the code that reproduces this issue or a replay of the bug
No response
Reproduction steps
- Create
pnpm-workspace.yaml
with the following contents:
updateConfig:
ignoreDependencies:
- foo
- Run
pnpm outdated
.foo
will be visible in the list (if it's outdated).
Describe the Bug
pnpm outdated
will include foo
if it is outdated, although it was configured to be ignored in pnpm-workspace.yaml
as per the docs.
Configuring with package.json
like so does work:
{
"pnpm": {
"updateConfig": {
"ignoreDependencies": ["foo"]
}
}
}
Expected Behavior
With the contents of pnpm-workspace.yaml
shown above, I expected that pnpm outdated
would not include foo
.
Which Node.js version are you using?
23.8.0
Which operating systems have you used?
- macOS
- Windows
- Linux
If your OS is a Linux based, which one it is? (Include the version if relevant)
Fedora