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
Post a Comment