2023-04-03 22:36:14 +08:00
|
|
|
const { Notification } = require('node-notifier');
|
|
|
|
|
|
|
|
new Notification().notify({
|
|
|
|
title: '✅ 准备发布到 npm',
|
2023-09-06 19:21:58 +08:00
|
|
|
message: '测试用例执行完毕,快回来输入 npm 校验码了!',
|
|
|
|
sound: 'Crystal',
|
2023-04-03 22:36:14 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
process.exit(0);
|