mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
3596c8811e
* chore: ts script * chore: fix lint
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
const { Notification: Notifier } = require('node-notifier');
|
|
|
|
new Notifier().notify({
|
|
title: '✅ 准备发布到 npm',
|
|
message: '测试用例执行完毕,快回来输入 npm 校验码了!',
|
|
sound: 'Crystal',
|
|
});
|
|
|
|
process.exit(0);
|