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