Using gulp with Laravel Elixir - disable tray icon messages?

When I use gulpLarvel Elixir with jobs in it, using the command line in Windows, every time it runs messages, it appears in the tray icon. I have to click on the text balls to gulpcomplete my tasks. I find it very annoying.

What causes the appearance of this icon in the tray on Windows, and how to disable it, or make it optional to click on the balloon?

+4
source share
1 answer

Disable gulp -notify

, gulp -notify, ? gulp -notify DISABLE_NOTIFIER.

export DISABLE_NOTIFIER = true; ; (), notify.onError notify.withReporter.

, gulp, gulp, laravel-elixir.

process.env.DISABLE_NOTIFIER = true;
var elixir = require('laravel-elixir');

issue

+5

Source: https://habr.com/ru/post/1626164/


All Articles