-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot run pnpm dist-tag react
in a pnpm configured project
#68
Comments
That's an interesting one, didn't know pnpm delegates commands to npm 🤔 cc @zkochan |
Yes, we do currently pass through to npm CLI some of the commands. We might implement them in pnpm in the future but it is not high priority. Can we run npm with some option or env variable to skip the check? |
I'd also like some sort of env variable to skip the check. Two examples: Can't install global packages using npm. Some tools rely on running
And most importantly, |
There is one: https://github.com/nodejs/corepack/blob/main/README.md#environment-variables |
pnpm dist-tag
will delegate the command tonpm dist-tag
and cause an error.I suggest making some commands that can be run in any project like
dist-tag
because they do not do anything related to the project.The text was updated successfully, but these errors were encountered: