mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
3ffc50dc05
* chore: add notice before publish to npm * chore: add notice before publish to npm
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);
|