Cameron Tacklind

Results 134 comments of Cameron Tacklind

Why are you asking permission to fork? The button is there. Also, you probably want to move to the apparent successor of this project, [`@colors/colors`](https://www.npmjs.com/package/@colors/colors), as this one seems to...

I can see that `.pdb` files are being generated in debug mode, however it's unclear that your coverage tool is finding those. With your confidence that it shouldn't *really* matter,...

So, I'm trying to run `Coverage-x64.exe` (and `x86`/`d` variants produce the same results), with a subsequent program that generates side effects (creates a file). The files are not created. No...

Ah ha! `npm` is not an executable on Windows. I needed to call `npm.cmd`. Now we're getting something. ```bat .\Coverage-x64.exe -p packages\bindings -- npm.cmd run test-win ``` Still not getting...

Well, I've moved onto using OpenCppCoverage since it worked without issue pretty much out of the box on first try, had more clear debugging outputs/error messages, and has self explanatory...

Thank you. The example commands were helpful. `-w` doesn't seem to be correct. I'm running in my current directory. The C++ sources are in `packages/bindings/src`. I had not seen any...

The sources I'm trying to cover are C++.

I don't think this is a duplicate exactly. But if #1832's proposal is done, that would cover this, but this is a different solution. This issue is asking for the...

I just noticed #108. Unfortunately the `this.request._readableState.buffer.toString()` method seems to not work for me. I'm running node `v8.5.0`. I've seen discussions around changing `_readableState` as it's supposed to be private....