laravel-elixir-browserify
laravel-elixir-browserify copied to clipboard
gulp --production runs forever with no output
Whenever I run gulp with the --production flag set, it runs other Javascript task but hangs when trying to compile Vue specific files.
It's not just production for me, are you running browserify by any chance? Seems to be the issue for me.
Just in case it is, are you using the hack to make broweserify play nice with watch? That is:
elixir.config.js.browserify.watchify = {
enabled: true,
options: {
poll: true
}
}
Removing this has just fixed the build for me, but it also breaks my watch...