mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-06 10:48:01 +08:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
const { Notification } = require('node-notifier');
|
|
|
|
new Notification().notify({
|
|
title: '✅ 准备发布到 npm',
|
|
message: '测试用例执行完毕,快回来输入 npm 校验码了!',
|
|
sound: 'Crystal',
|
|
});
|
|
|
|
process.exit(0);
|