Gulp notify未显示toast通知

Gulp notify未显示toast通知,gulp,toast,gulp-notify,Gulp,Toast,Gulp Notify,我有一个自定义错误处理程序,它应该显示带有gulpnotify的通知,然后将其记录到控制台中 module.exports = function () { return plumber(function (err) { notify({ title: 'Gulp Build Error', message: 'Check the Task Runner or console for more details.'

我有一个自定义错误处理程序,它应该显示带有
gulpnotify
的通知,然后将其记录到控制台中

module.exports = function () {
    return plumber(function (err) {
        notify({
            title: 'Gulp Build Error',
            message: 'Check the Task Runner or console for more details.'
        }).write(err);

        gutil.log(err);
        this.emit('end');
    });
};
我倾向于相信它的设置是正确的,因为它正在控制台中成功地打印此信息(后面是错误详细信息):

但是,没有显示toast通知。奇怪的是,这个精确的配置在几周前就显示出来了。是否有人在配置过程中看到任何危险信号,或者知道任何可能阻止toast通知弹出的情况?我使用的是Windows 8.1,SnoreToast设置为在通知设置中显示通知

谢谢

更新:这似乎是Windows 8.1的问题。我在Windows10机器上运行了这个程序,通知出现了

[15:35:04] gulp-notify: [Gulp Build Error] Check the Task Runner or console for more details.