diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
commit | bbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch) | |
tree | c58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/update-notifier/index.js | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/update-notifier/index.js')
-rw-r--r-- | node_modules/update-notifier/index.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/node_modules/update-notifier/index.js b/node_modules/update-notifier/index.js index 58f245903..38ff01e29 100644 --- a/node_modules/update-notifier/index.js +++ b/node_modules/update-notifier/index.js @@ -12,6 +12,7 @@ const isNpm = importLazy('is-npm'); const isInstalledGlobally = importLazy('is-installed-globally'); const boxen = importLazy('boxen'); const xdgBasedir = importLazy('xdg-basedir'); +const isCi = importLazy('is-ci'); const ONE_DAY = 1000 * 60 * 60 * 24; class UpdateNotifier { @@ -37,7 +38,9 @@ class UpdateNotifier { this.hasCallback = typeof options.callback === 'function'; this.callback = options.callback || (() => {}); this.disabled = 'NO_UPDATE_NOTIFIER' in process.env || - process.argv.indexOf('--no-update-notifier') !== -1; + process.argv.indexOf('--no-update-notifier') !== -1 || + isCi(); + this.shouldNotifyInNpmScript = options.shouldNotifyInNpmScript; if (!this.disabled && !this.hasCallback) { try { @@ -106,7 +109,8 @@ class UpdateNotifier { }); } notify(opts) { - if (!process.stdout.isTTY || isNpm() || !this.update) { + const suppressForNpm = !this.shouldNotifyInNpmScript && isNpm(); + if (!process.stdout.isTTY || suppressForNpm || !this.update) { return this; } |