web-ext
Version:
A command line tool to help build, run, and test web extensions
15 lines • 338 B
JavaScript
import defaultUpdateNotifier from 'update-notifier';
export function checkForUpdates({
version,
updateNotifier = defaultUpdateNotifier
}) {
const pkg = {
name: 'web-ext',
version
};
updateNotifier({
pkg,
updateCheckInterval: 1000 * 60 * 60 * 24 * 3 // 3 days,
}).notify();
}
//# sourceMappingURL=updates.js.map