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
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/npm-cli.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/npm-cli.js b/bin/npm-cli.js
index ce89eaacc..14937d64f 100755
--- a/bin/npm-cli.js
+++ b/bin/npm-cli.js
@@ -35,6 +35,7 @@
var npm = require('../lib/npm.js')
var npmconf = require('../lib/config/core.js')
var errorHandler = require('../lib/utils/error-handler.js')
+ var output = require('../lib/utils/output.js')
var configDefs = npmconf.defs
var shorthands = configDefs.shorthands
@@ -80,6 +81,12 @@
conf._exit = true
npm.load(conf, function (er) {
if (er) return errorHandler(er)
- npm.commands[npm.command](npm.argv, errorHandler)
+ npm.commands[npm.command](npm.argv, function (err) {
+ // https://www.youtube.com/watch?v=7nfPu8qTiQU
+ if (!err && npm.config.get('ham-it-up')) {
+ output('\n 🎵 I Have the Honour to Be Your Obedient Servant,🎵 ~ npm 📜🖋\n')
+ }
+ errorHandler.apply(this, arguments)
+ })
})
})()