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:
Diffstat (limited to 'lib/exec.js')
-rw-r--r--lib/exec.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/exec.js b/lib/exec.js
index 8c8606456..5b2e15831 100644
--- a/lib/exec.js
+++ b/lib/exec.js
@@ -40,13 +40,13 @@ const BaseCommand = require('./base-command.js')
class Exec extends BaseCommand {
/* istanbul ignore next - see test/lib/load-all-commands.js */
- static get name () {
- return 'exec'
+ static get description () {
+ return 'Run a command from a local or remote npm package'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
- static get description () {
- return 'Run a command from a local or remote npm package.'
+ static get name () {
+ return 'exec'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */