We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
npm pollutes stdtout when using npx/npm exec
Old behavior:
$ npm --version 10.2.4 $ npm exec -- /bin/bash -c 'echo what?' what?
$ npm install -g npm@latest removed 43 packages, and changed 74 packages in 710ms 24 packages are looking for funding run `npm fund` for details
New behavior
$ npm --version 10.6.0 $ npm exec -- /bin/bash -c 'echo what?' > @grupomarea/roo@0.1.0 npx > /bin/bash -c echo what? what?
This seems similar to #7354
$ npm --version 10.6.0 $ npm exec -- /bin/bash -c 'echo what?' what?
$ cat /etc/lsb-release DISTRIB_ID=LinuxMint DISTRIB_RELEASE=21.1 DISTRIB_CODENAME=vera DISTRIB_DESCRIPTION="Linux Mint 21.1 Vera" $ uname -i x86_64
; node version = v20.11.1 ; npm version = 10.6.0
The text was updated successfully, but these errors were encountered:
For a sake of completeness, this does not happen on 10.5.0
10.5.0
$ npm install -g npm@10.5 # ... $ npm exec -- /bin/bash -c 'echo what?' what?
PS: Why v10.6.0 is tagged @latest when current docs changelog states v10.5.2 is latest CLI?
v10.6.0
@latest
v10.5.2
Sorry, something went wrong.
@wraithgar seems also related to npm/statusboard#829
This is duplicate of #7419 and it is fixed in this PR #7421.
Ok, sorry the noise
No Problem. Thank you for testing with latest npm.
No branches or pull requests
Is there an existing issue for this?
This issue exists in the latest npm version
Current Behavior
npm pollutes stdtout when using npx/npm exec
Old behavior:
New behavior
Expected Behavior
Steps To Reproduce
Environment
$ cat /etc/lsb-release DISTRIB_ID=LinuxMint DISTRIB_RELEASE=21.1 DISTRIB_CODENAME=vera DISTRIB_DESCRIPTION="Linux Mint 21.1 Vera" $ uname -i x86_64
The text was updated successfully, but these errors were encountered: