fix(usage): better audit/boolean flag usage output #3497
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds the
audit
config item to the usage output ofnpm ci
, andalso tweaks how usage flags are shown for boolean options that do not
default to false. Their usage is shown as the
--no-x
form of the flagto better communicate that the flag is needed to turn that normally true
option OFF.
The description of
audit
was also updated to reflect that it runs onmany different npm commands, not just install. Because this flag is
included in the usage of those commands it's best to let the assocation
happen there instead of trying to be comprehensive in the description
itself.
A small fix to make
install-ci-test
not try to redefine its ownusage, but to inherit from
ci
was also included.References
Closes #2703