Skip to content
New issue

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

usage: Correct "npm COMMAND help" to "npm help COMMAND" #2855

Merged
merged 1 commit into from Mar 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/base-command.js
Expand Up @@ -19,7 +19,7 @@ class BaseCommand {

// Mostly this just appends aliases, this could be more clear
usage = usageUtil(this.constructor.name, usage)
usage = `${usage}\n\nRun "npm ${this.constructor.name} help" for more info`
usage = `${usage}\n\nRun "npm help ${this.constructor.name}" for more info`
return usage
}

Expand Down
10 changes: 5 additions & 5 deletions tap-snapshots/test-lib-dist-tag.js-TAP.test.js
Expand Up @@ -15,7 +15,7 @@ npm dist-tag ls [<pkg>]

alias: dist-tags

Run "npm dist-tag help" for more info
Run "npm help dist-tag" for more info
`

exports[`test/lib/dist-tag.js TAP add missing pkg name > should exit usage error message 1`] = `
Expand All @@ -28,7 +28,7 @@ npm dist-tag ls [<pkg>]

alias: dist-tags

Run "npm dist-tag help" for more info
Run "npm help dist-tag" for more info
`

exports[`test/lib/dist-tag.js TAP add new tag > should return success msg 1`] = `
Expand All @@ -50,7 +50,7 @@ npm dist-tag ls [<pkg>]

alias: dist-tags

Run "npm dist-tag help" for more info
Run "npm help dist-tag" for more info
`

exports[`test/lib/dist-tag.js TAP ls in current package > should list available tags for current package 1`] = `
Expand All @@ -69,7 +69,7 @@ npm dist-tag ls [<pkg>]

alias: dist-tags

Run "npm dist-tag help" for more info
Run "npm help dist-tag" for more info
`

exports[`test/lib/dist-tag.js TAP ls on missing package > should log no dist-tag found msg 1`] = `
Expand Down Expand Up @@ -118,7 +118,7 @@ npm dist-tag ls [<pkg>]

alias: dist-tags

Run "npm dist-tag help" for more info
Run "npm help dist-tag" for more info
`

exports[`test/lib/dist-tag.js TAP remove non-existing tag > should log error msg 1`] = `
Expand Down
2 changes: 1 addition & 1 deletion tap-snapshots/test-lib-publish.js-TAP.test.js
Expand Up @@ -11,5 +11,5 @@ npm publish
Usage:
npm publish [<folder>] [--tag <tag>] [--access <public|restricted>] [--dry-run]

Run "npm publish help" for more info
Run "npm help publish" for more info
`