Skip to content

Commit 1674136

Browse files
authoredApr 30, 2024··
docs: correct search help output (#7441)
`--long` does not do anything and hasn't in some time. The first search param is also required. Closes: #7402 Closes: #7434
1 parent bcc781a commit 1674136

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed
 

‎lib/commands/search.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class Search extends BaseCommand {
88
static description = 'Search for packages'
99
static name = 'search'
1010
static params = [
11-
'long',
1211
'json',
1312
'color',
1413
'parseable',
@@ -22,7 +21,7 @@ class Search extends BaseCommand {
2221
'offline',
2322
]
2423

25-
static usage = ['[search terms ...]']
24+
static usage = ['<search term> [<search term> ...]']
2625

2726
async exec (args) {
2827
const opts = {

‎tap-snapshots/test/lib/docs.js.test.cjs

+4-5
Original file line numberDiff line numberDiff line change
@@ -4065,11 +4065,11 @@ exports[`test/lib/docs.js TAP usage search > must match snapshot 1`] = `
40654065
Search for packages
40664066
40674067
Usage:
4068-
npm search [search terms ...]
4068+
npm search <search term> [<search term> ...]
40694069
40704070
Options:
4071-
[-l|--long] [--json] [--color|--no-color|--color always] [-p|--parseable]
4072-
[--no-description] [--searchlimit <number>] [--searchopts <searchopts>]
4071+
[--json] [--color|--no-color|--color always] [-p|--parseable] [--no-description]
4072+
[--searchlimit <number>] [--searchopts <searchopts>]
40734073
[--searchexclude <searchexclude>] [--registry <registry>] [--prefer-online]
40744074
[--prefer-offline] [--offline]
40754075
@@ -4078,14 +4078,13 @@ aliases: find, s, se
40784078
Run "npm help search" for more info
40794079
40804080
\`\`\`bash
4081-
npm search [search terms ...]
4081+
npm search <search term> [<search term> ...]
40824082
40834083
aliases: find, s, se
40844084
\`\`\`
40854085
40864086
Note: This command is unaware of workspaces.
40874087
4088-
#### \`long\`
40894088
#### \`json\`
40904089
#### \`color\`
40914090
#### \`parseable\`

0 commit comments

Comments
 (0)
Please sign in to comment.