You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read the list of known issues before filing this issue.
I have searched for similiar issues before filing this issue.
node version: LTS
npm version: LTS
npm-check-updates version: Latest
Is it possible to support NPQ as a package manager installer so we can have better security guidance on what we are installing?
Alternatively, if NCU could output the list of installs so the output could be chained into a custom command? Such as ncu -u --drystring outputting a dry run string of sinon@7.2.2 eslint@5.11.1 so we can then easily call npq install $(ncu -u --drystring)
The text was updated successfully, but these errors were encountered:
The ncu command by default is a dry run and does not update anything. There is ncu -j which outputs json, which might be easiest to transform into an install command. It will require either some additional shell or js scripting to convert.
Is it possible to support NPQ as a package manager installer so we can have better security guidance on what we are installing?
Alternatively, if NCU could output the list of installs so the output could be chained into a custom command? Such as
ncu -u --drystring
outputting a dry run string ofsinon@7.2.2 eslint@5.11.1
so we can then easily callnpq install $(ncu -u --drystring)
The text was updated successfully, but these errors were encountered: