Results 207 comments of Corey Farrell

This issue is blocked by https://github.com/evanw/node-source-map-support/issues/239. The issue is that nyc source-maps are inline but node-source-map-support does not look at inline source-maps by default.

@boneskull any thoughts on this one? I just did some debugging and it looks like `foreground-child` used by nyc to spawn the subprocess receives exit code=0, signal=null in the `nyc...

I noticed your are using nyc 14, there were some source-map fixes which went into nyc 15 (particularly related to bundled code), please give this a try to see if...

@bcoe I've commented on the `test-exclude` issue, I need some guidance before I can implement a patch for this issue.

My preference is for the "Exports Sigil" where `exports` uses LHS `./#fetch` and code uses `import 'pkg/#fetch'`. My complaint with `import '#fetch'` is that it could create difficulty if using...

nyc currently uses the transform function from `@babel/core` to add instrumentation, it would never be appropriate for nyc to perform preset-env transformations. `npm i nyc` currently installs an 18mb node_modules...

I can answer part of this bug, it's not possible for files required via `--require` to be automatically instrumented. To get this working you must pre-instrument the file to be...

I've marked this issue so the stale bot will not touch it anymore, but understand that no code fix is planned. The intent is to create a tutorial at istanbul.js.org...

Native V8 coverage can be processed by [c8](https://github.com/bcoe/c8#readme) in place of nyc, it only uses istanbul to generate reports. From what I can tell it doesn't yet support any kind...

@bcoe in addition to human readable I think a [JSON schema](http://json-schema.org/) would be nice. Maybe human readable docs could even be generated by JSON schema, not sure.