We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pnpm
Learn more about funding links in repositories.
Report abuse
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
pnpm exec
.pnpmfile.cjs
Since 7.5.1, pnpm now outputs some garbage before running the command. This breaks things if the output is being piped into another process.
Create an empty directory. Run the following:
pnpm add hello-world-npm
echo 'module.exports = {}' > .pnpmfile.cjs
pnpm hello-world-npm
Output is
Hello World NPM
Using hooks from: /tmp/test/.pnpmfile.cjs Hello World NPM
node -v
The text was updated successfully, but these errors were encountered:
Looks like this was a side effect of #5012, output that formerly went to the log file now goes to the console.
Sorry, something went wrong.
fix: don't print info messages about .pnpmfile.cjs
ed97c12
close #5027
This is the same issue as actions/setup-node#543
ec52a76
fix: don't print info messages about .pnpmfile.cjs (#5032)
744d47d
ffbee1c
zkochan
Successfully merging a pull request may close this issue.
Since 7.5.1, pnpm now outputs some garbage before running the command. This breaks things if the output is being piped into another process.
pnpm version: 7.5.1
Code to reproduce the issue:
Create an empty directory. Run the following:
pnpm add hello-world-npm
echo 'module.exports = {}' > .pnpmfile.cjs
pnpm hello-world-npm
Expected behavior:
Output is
Actual behavior:
Output is
Additional information:
node -v
prints: v16.16.0The text was updated successfully, but these errors were encountered: