We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 792c8c7 commit d811461Copy full SHA for d811461
bin/npm-cli.js
@@ -69,12 +69,15 @@
69
npm.command = 'help'
70
}
71
72
+ var isGlobalNpmUpdate = conf.global && ['install', 'update'].includes(npm.command) && npm.argv.includes('npm')
73
+
74
// now actually fire up npm and run the command.
75
// this is how to use npm programmatically:
76
conf._exit = true
77
npm.load(conf, function (er) {
78
if (er) return errorHandler(er)
79
if (
80
+ !isGlobalNpmUpdate &&
81
npm.config.get('update-notifier') &&
82
!unsupported.checkVersion(process.version).unsupported
83
) {
0 commit comments