Files
Pake/bin/helpers/updater.ts
2023-06-24 21:24:53 +08:00

7 lines
218 B
TypeScript
Vendored

import updateNotifier from 'update-notifier';
import packageJson from '../../package.json';
export async function checkUpdateTips() {
updateNotifier({ pkg: packageJson, updateCheckInterval: 1000 * 60 }).notify();
}