JeffreyWay / laravel-elixir-vueify

This is a very thin wrapper for Laravel Elixir and the Browserify Vueify plugin.
156 stars 30 forks source link

Watch #11

Open brianvoe opened 8 years ago

brianvoe commented 8 years ago

I upgraded laravel elixir to verion 5 and watch doesnt process vue files on change. It does trigger a change but once done and it refreshes browser none of the vue file changes were updated.

I am buidling a single page app with vuejs router so there is only a single file input mix.browserify('admin/admin.js', 'public/js/admin/admin.js');

Im also using task find watch to watch and trigger vue file changes. elixir.Task.find("browserify").watch([ 'resources/assets/*/.vue', 'resources/assets/*/.js' ]);

Let me know if there is anything else i can do to help you recreate this issue.

Thanks.

brianvoe commented 8 years ago

Reverted laravel elixir back to 4 and everything works again.

stevenobird commented 8 years ago

It seems that very small changed aren't noticed.

patrick-hertling commented 8 years ago

My experience has been:

mix.browserify('script1.js')
   .browserify('script2.js');
studiopersona commented 8 years ago

Watch doesn't work at all on Windows 10.

laracasts commented 8 years ago

PRs welcomed.

ikristher commented 8 years ago

experiencing this problem on my Windows 10, its actually annoying to add line save and remove line again.

ikristher commented 8 years ago

5 @jonagoldman's answer worked for me