ant-design/scripts/pre-publish-notice.js
afc163 3ffc50dc05
chore: add notice before publish to npm (#41613)
* chore: add notice before publish to npm

* chore: add notice before publish to npm
2023-04-03 22:36:14 +08:00

10 lines
233 B
JavaScript

const { Notification } = require('node-notifier');
new Notification().notify({
title: '✅ 准备发布到 npm',
message: '测试用例执行完毕,马上就要输入 npm 校验码了!',
sound: true,
});
process.exit(0);