mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-09 04:58:38 +08:00
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
|
const { Notification } = require('node-notifier');
|
||
|
|
||
|
new Notification().notify({
|
||
|
title: '✅ 准备发布到 npm',
|
||
|
message: '测试用例执行完毕,马上就要输入 npm 校验码了!',
|
||
|
sound: true,
|
||
|
});
|
||
|
|
||
|
process.exit(0);
|