npm list --depth=0)node -v): 8.10.0NPM Version (npm -v): 6.1.0
Laravel Mix Version: 2.1.11 (npm list --depth=0)
node -v): 8.11.1npm -v): 6.1.0As title says disableSuccessNotifications() doesn't seem to work. I have tried same setup on two machines, but same result.
On the other hand disableNotifications() works as intended in my case.
php artisan preset reactnpm install && npm run devmix.disableSuccessNotifications(); to webpack.mix.jsnpm run dev again to check if it's going to display success messageHaving the same issue here, disableNotifications works, disabling successNotifications doesn't.
Same issue here, I've found what I think is the issue though:
When npm is watching every changes to your files:
If you launch npm run devmanually everytime, you can easily think the .disableSuccessNotifications() option doesn't work at all.
Can you try with npm run hot, or npm run dev -watch--poll and see if it's working the way I described it?
PS : Be sure to launch your npm run command after saving your webpack.mix.js file.
having the same problem with laravel-mix 2
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I can confirm what @AlexMartinFR said is what's happening; a single success notification is sent, but not subsequent success notifications. I'm using npm run watch.
Most helpful comment
I can confirm what @AlexMartinFR said is what's happening; a single success notification is sent, but not subsequent success notifications. I'm using
npm run watch.