browserify / watchify

watch mode for browserify builds
Other
1.79k stars 203 forks source link

'updating' variable is always true #256

Closed t2n closed 9 years ago

t2n commented 9 years ago

'end' event never fires in that part of the code:

bundle.on('end', onend);

therefore grunt-browserify doesn't update my bundles. It was working properly several days ago. I'm using OSX but that's not fsevent bug - invalidate method fires on every dependant file change.

Could you point me the way to investigate this further and find the cause of it ?

Thanks

zertosh commented 9 years ago

Make sure that grunt-browserify is actually using browserify 11.0.1 – it has https://github.com/substack/node-browserify/commit/90a429d6c22eefa61f73840ca212e7784666660a which fixes what you're describing.

t2n commented 9 years ago

that did the trick, thanks a lot!