Files
Pake/bin/helpers/updater.ts
2023-06-22 14:36:02 +08:00

7 lines
186 B
TypeScript
Vendored

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