Sha256: 30b30f758a1420a295768056a318c58fe408e447a0cf1b46ccdf8b3ac6c6c8a6

Contents?: true

Size: 617 Bytes

Versions: 69

Compression:

Stored size: 617 Bytes

Contents

'use strict';
var updateNotifier = require('./');
var options = JSON.parse(process.argv[2]);
var updateNotifier = new updateNotifier.UpdateNotifier(options);

updateNotifier.checkNpm(function (err, update) {
	if (err) {
		process.exit(1);
	}

	// only update the last update check time on success
	updateNotifier.config.set('lastUpdateCheck', Date.now());

	if (update.type && update.type !== 'latest') {
		updateNotifier.config.set('update', update);
	}

	// Call process exit explicitly to terminate the child process
	// Otherwise the child process will run forever (according to nodejs docs)
	process.exit();
});

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.18 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.17 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.16 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.15 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.14 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.13 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.12 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.11 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.10 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.9 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/update-notifier/check.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/update-notifier/check.js