pnpm bugs
Added in: v11.1.0
Opens a package's bug tracker URL in the browser.
pnpm bugs [<pkg> ...]
When run without arguments inside a package directory, it opens the bug tracker for the current project (using the bugs field from package.json).
When one or more package names are passed, pnpm fetches each package's metadata from the registry and opens its bug tracker.
If a package does not declare a bugs field, pnpm falls back to <repository>/issues derived from the repository field.
Примеры
Open the bug tracker for a published package:
pnpm bugs lodash
Open the bug tracker for multiple packages at once:
pnpm bugs react react-dom
Open the bug tracker for the current project:
pnpm bugs