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
Since 4.2.3, copy-to-clipboard is in both dependencies and devDependencies.
copy-to-clipboard
dependencies
devDependencies
When I run npm prune --production, copy-to-clipboard gets removed. So now, I need to explicit add it to my projects dependencies ...
npm prune --production
node@6.8.0 npm@4.4.4
The text was updated successfully, but these errors were encountered:
Yep, npm prune is totally broken now after complete rewrite npm/npm#15669
npm prune
Our best solution so far is:
docker run -v $(pwd):/app -w /app -it mhart/alpine-node:7.4.0 npm prune --production
PS: tho removing copy-to-clipboard from dev deps would be a good idea anyway.
Sorry, something went wrong.
nkbt
No branches or pull requests
Since 4.2.3,
copy-to-clipboard
is in bothdependencies
anddevDependencies
.When I run
npm prune --production
,copy-to-clipboard
gets removed. So now, I need to explicit add it to my projects dependencies ...The text was updated successfully, but these errors were encountered: