2015-08-18 12:53:06 +00:00
|
|
|
(function() {
|
2015-08-20 20:54:22 +00:00
|
|
|
var isRoot, notifier, packageJSON, updateNotifier;
|
2015-08-18 12:53:06 +00:00
|
|
|
|
|
|
|
updateNotifier = require('update-notifier');
|
|
|
|
|
2015-08-20 20:54:22 +00:00
|
|
|
isRoot = require('is-root');
|
|
|
|
|
2015-08-18 12:53:06 +00:00
|
|
|
packageJSON = require('../../package.json');
|
|
|
|
|
2015-08-20 20:54:22 +00:00
|
|
|
if (!isRoot()) {
|
|
|
|
notifier = updateNotifier({
|
|
|
|
pkg: packageJSON
|
|
|
|
});
|
|
|
|
}
|
2015-08-18 12:53:06 +00:00
|
|
|
|
|
|
|
exports.hasAvailableUpdate = function() {
|
|
|
|
return notifier != null;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.notify = function() {
|
|
|
|
if (!exports.hasAvailableUpdate()) {
|
|
|
|
return;
|
|
|
|
}
|
2015-10-15 13:18:45 +00:00
|
|
|
notifier.notify({
|
|
|
|
defer: false
|
|
|
|
});
|
|
|
|
if (notifier.update != null) {
|
|
|
|
return console.log('Notice that you might need administrator privileges depending on your setup\n');
|
|
|
|
}
|
2015-08-18 12:53:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}).call(this);
|