pnpm outdated --recursive errors
#12827
-
|
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I double checked and v10 still worked as expected |
Beta Was this translation helpful? Give feedback.
-
|
This does not look like an npm auth problem. The interesting bit is the lockfile entry for the local package. In the commit you linked, devDependencies:
'@azure-tools/mock-hub':
specifier: ^1.0.0
version: link:../mock-hubSo pnpm installed it as a local link, but the dependency specifier is still a normal semver range, not a workspace protocol range. When I would try changing the consuming package to make the local intent explicit: "@azure-tools/mock-hub": "workspace:^"Then run install again so the lockfile records: specifier: workspace:^
version: link:../mock-hubThat also matches nearby internal deps like Your filters are probably not the reason this package is still being checked. If changing it to |
Beta Was this translation helpful? Give feedback.
-
|
I opened a small fix for this in #12834. The change skips |
Beta Was this translation helpful? Give feedback.
This does not look like an npm auth problem. The interesting bit is the lockfile entry for the local package. In the commit you linked,
@azure-tools/mock-hubis a workspace package, but the consuming package has it recorded like this undersdk/eventhub/event-hubs:So pnpm installed it as a local link, but the dependency specifier is still a normal semver range, not a workspace protocol range. When
pnpm outdated -rchecks whether^1.0.0is outdated, v11 appears to try the registry lookup for that package name. Since@azure-tools/mock-hubis private/local and not published, the registry request r…