8 lines
206 B
TypeScript
Vendored
8 lines
206 B
TypeScript
Vendored
import updateNotifier from 'update-notifier';
|
|
// @ts-expect-error
|
|
import packageJson from '../../package.json';
|
|
|
|
export async function checkUpdateTips() {
|
|
updateNotifier({ pkg: packageJson }).notify();
|
|
}
|