Using gulp with Laravel Elixir - disable tray icon messages? -


when use gulp laravel elixir tasks in using command line on windows, every time runs messages displayed in tray icon. have click on text-balloons make gulp finish tasks. find annoying.

what causing tray icon appear on windows, , how disable it, or make not necessary click on balloon ?

disable gulp-notify

if running on system handles notifications poorly or not wish use gulp-notify project does? can disable gulp-notify using enviroment variable disable_notifier.

export disable_notifier=true; disable methods; notify(), notify.onerror , notify.withreporter.

you can read more in here

so if want disable gulp notifications add gulp file, before requiring laravel-elixir.

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

you can read more in issue


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -