UNPKG

328 BJavaScriptView Raw
1const updateNotifier = require('update-notifier')
2const pkg = require('../package.json')
3
4try {
5 updateNotifier({
6 pkg,
7 updateCheckInterval: 1000 * 60 * 60 * 12 // check every 1/2 day
8 }).notify()
9} catch (e) {
10 console.log('Error checking for updates:')
11 console.log(e)
12}
13
14module.exports = require('@oclif/command')