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/stop.js')
-rw-r--r--lib/stop.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/stop.js b/lib/stop.js
index a3857ab13..766d9c018 100644
--- a/lib/stop.js
+++ b/lib/stop.js
@@ -3,6 +3,11 @@ const LifecycleCmd = require('./utils/lifecycle-cmd.js')
// This ends up calling run-script(['stop', ...args])
class Stop extends LifecycleCmd {
/* istanbul ignore next - see test/lib/load-all-commands.js */
+ static get description () {
+ return 'Stop a package'
+ }
+
+ /* istanbul ignore next - see test/lib/load-all-commands.js */
static get name () {
return 'stop'
}