Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2021-03-19 21:56:18 +0300
committerGar <gar+gh@danger.computer>2021-03-22 20:17:57 +0300
commitb876442241b9d366a0541714bbee1ae50d6746fd (patch)
treea4849bd374d9786f6c7d2ae4e4c74c62d0c35db8 /lib/bin.js
parent629aaf394c4fa01b79a77d43489baca6492bce9a (diff)
fix(usage): tie usage to config
This starts us down the path of tying the params our commands accept to their config items. For now it is optional, and not every current config item would cleanly render if we added them today. The ones that are added here DO render nicely, and we can iterate from here. We can also at a later date do the same kind of appraoch with our positional args. PR-URL: https://github.com/npm/cli/pull/2908 Credit: @wraithgar Close: #2908 Reviewed-by: @nlf, @isaacs
Diffstat (limited to 'lib/bin.js')
-rw-r--r--lib/bin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bin.js b/lib/bin.js
index 23098b670..20e13f160 100644
--- a/lib/bin.js
+++ b/lib/bin.js
@@ -10,8 +10,8 @@ class Bin extends BaseCommand {
return 'bin'
}
- static get usage () {
- return ['[-g]']
+ static get params () {
+ return ['global']
}
exec (args, cb) {