Gulp-notify未显示Toast通知

时间:2017-03-27 19:51:16

标签: gulp toast gulp-notify

我有一个自定义错误处理程序,它应该显示gulp-notify的通知,然后在控制台中记录它。

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');
    });
};

我倾向于认为它已正确设置,因为它已在控制台中成功打印(后跟错误详情):

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

但是,没有显示Toast通知。奇怪的是,几周前这个确切的配置就显示出来了。有没有人看到这个配置的方式有任何红旗,或者知道任何可能阻止吐司通知弹出的东西?我在Windows 8.1上,并且SnoreToast设置为在通知设置中显示通知。

感谢。

更新:这似乎是Windows 8.1问题。我在Windows 10机器上运行它,并显示通知。

0 个答案:

没有答案