我无法从 Gulp 4 获取通知以在 MacOS Big Sur 上工作。在较旧的操作系统版本和 Gulp 3 中它确实有效,但现在我什至无法让它们出现。
我试过 gulp-notify 和 node-notifier,两者都不会在通知中心显示通知。
gulp-notify 示例:
const gulp_notify = require('gulp-notify');
Gulp 4 函数定义:
function notify(cb) {
gulp_notify('Notification from Gulp 4');
cb();
}
出口:
exports.notify = notify;
(全部在 gulpfile.js 中)
运行时的终端输出gulp notify
➜ gulp notify
[11:15:59] Using gulpfile /path/to/my/gulpfile.js
[11:15:59] Starting 'notify'...
[11:15:59] Finished 'notify' after 1.42 ms
没有通知出现。
- 我在“系统偏好设置”>“通知”中检查了我的终端应用程序 (Hyper) 的设置
- “请勿打扰”设置已关闭
任何帮助(代码和/或配置设置)将不胜感激。