Files
Pake/bin/helpers/updater.ts
2025-08-05 19:53:58 +08:00

9 lines
243 B
TypeScript
Vendored

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