From 3a332e39b93badbb3bc0dcff97f7670142f46795 Mon Sep 17 00:00:00 2001 From: Jens Meindertsma Date: Thu, 21 May 2020 10:32:05 +0200 Subject: [PATCH] Enabled `isGlobal` setting --- bin/ncu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ncu.js b/bin/ncu.js index 477693d2..d7291c06 100755 --- a/bin/ncu.js +++ b/bin/ncu.js @@ -12,7 +12,7 @@ const pkg = require('../package.json') // check if a new version of ncu is available and print an update notification const notifier = updateNotifier({ pkg }) if (notifier.update && notifier.update.latest !== pkg.version) { - notifier.notify({ defer: false }) + notifier.notify({ defer: false, isGlobal: true }) } program