I use gulp and laravel elixir for building a website. Everytime I do gulp
or gulp --production
in my editor (geany), 3 desktop notifications pop up. (gnome 3.18.2). Also when I do gulp watch
the notifications appear.
Can I disable these messages or let them show up only in the terminal?
add process.env.DISABLE_NOTIFIER = true;
in first line of your gulpfile.js
.
and this line :
if you want disable only in local :
if (process.argv[2] == '--local') {
process.env.DISABLE_NOTIFIER = true;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With