Files
Pake/bin/helpers/updater.ts
2023-04-06 19:59:05 +08:00

8 lines
225 B
TypeScript
Vendored

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