Skip to content

Commit

Permalink
Enable "uodate" event emitting for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Bobukh committed Oct 5, 2015
1 parent 3565b89 commit 9e1ef01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,10 @@ function doBundle(browserifyInstance, opts, bundleComplete) {
else {
bundleComplete(err, buf);
}
});
})
// Need this to ensure it works on MacOS
// See 'important' note here: https://github.com/substack/watchify#var-w--watchifyb-opts
.on('data', function() {});
}

function testForGlob(id) {
Expand Down

0 comments on commit 9e1ef01

Please sign in to comment.