UNPKG

204 BJavaScriptView Raw
1/**
2 * Update notifier
3 */
4
5'use strict';
6
7const updateNotifier = require( 'update-notifier' );
8const pkg = require( '../package.json' );
9
10module.exports = () => {
11 updateNotifier( { pkg } ).notify();
12};