rstuven
rstuven
I found the root cause: Some dependencies (see below) are installing `[email protected]`, which removes the `buffer` property from the `CID` class, while others still depend on that property. ``` $...
Idiot. That said, I like your proposals very much.
@zerobatu @propercursive See @michaelzibmz's workaround here: https://github.com/rstacruz/js2coffee/issues/189#issuecomment-14611812
Yes, that worked! ` rm -rf node_modules .yarnclean && yarn `
@pelle It's trying to read the templates in node_modules. Maybe a better message would be "Failed to create coverage reports", because at that point it is not writing anything.
A workaround is to monkey patch Node: ``` javascript var ServerResponse = require('http').ServerResponse; ServerResponse.prototype.assignSocket = function(socket) { var that = socket._httpMessage = this; this.onServerResponseClose = function onServerResponseClose() { that.emit('close'); };...