8 lines
225 B
TypeScript
Vendored
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 });
|
|
}
|