UNPKG

273 BJavaScriptView Raw
1'use strict';
2
3const notifier = require('update-notifier');
4const pkg = require('../package.json');
5
6
7function notify(updateCheckInterval = 1000 * 60 * 60 * 2) { // default 2 hour
8 notifier({
9 pkg,
10 updateCheckInterval
11 }).notify();
12}
13
14module.exports = { notify };
\No newline at end of file