Gulp with Laravel Elixir throws events.js:141 unhandled 'error' event Gulp with Laravel Elixir throws events.js:141 unhandled 'error' event laravel laravel

Gulp with Laravel Elixir throws events.js:141 unhandled 'error' event


Seeing you're using 'Laravel' I can only assume you're using 'laravel-elixir'.Due to recent changes in this package there are some compatibility problems with SASS.

You can always use a fixed version in your package.json file and set it to

  "dependencies": {    "laravel-elixir": "3.4.2",  }

instead of the default ^3.0.0, witch will auto update to the latest version.After changing the version just re-run npm update

I hope this helps you.