babel-plugin-istanbul
babel-plugin-istanbul copied to clipboard
A babel plugin that adds istanbul instrumentation to ES6 code
Different sources indicate that the `nyc` config key can be read from either `package.json` or `.babelrc`. In the case that it is defined in both, which takes priority? This derived...
It would be nice to have some documentation of using babel without environment based configuration. For gulp users, for example, you might be using babel to do multiple things in...
Recently, some projects need to view the increasing trend of code coverage, but I cannot view the historical report. Is there a way?
Update istanbul-lib-instrument to the latest version to prevent https://avd.aquasec.com/nvd/2022/cve-2022-25883/ Also took the liberty to update @istanbuljs/schema, coveralls and cross-env since there was no change needed
fix #289 Thanks to @liuxingbaoyu for [recommending the fix](https://github.com/babel/babel/issues/16354#issuecomment-1998977953)
I can't say for sure if the fault lies with the babel core packages or `babel-plugin-istanbul`...`@babel/preset-env` with `forceAllTransforms: true` by itself doesn't choke on the code below, and neither does...
Started to get webpack error once upgrading nextJS to `14.1.0` "@cypress/browserify-preprocessor": "^3.0.2", "@cypress/code-coverage": "^3.12.19", "@istanbuljs/nyc-config-typescript": "^1.0.2", "@testing-library/cypress": "^10.0.1", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^14.4.3", "@types/jest": "^29.2.0", "@types/supertest": "^2.0.12", "babel-plugin-istanbul": "^6.1.1",...
It would be great to have a parcel.js 2 compatible plugin. Looking into the sparse API documentation, implementing a custom solution could be quite cumbersome.
Hi folks, it looks like there's an outstanding issue related to istanbul and Node 14+, which seems to have propagated into this plugin. Here's the error it spits when running...
I started using Cypress for NextJS, I followed their [documentation](https://docs.cypress.io/guides/tooling/code-coverage#Using-code-transpilation-pipeline) for integrating `babel-plugin-istanbul` for transpiling during the code coverage. However, I faced this issue: - If I use `baberc` for...