-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: exclude unexpected file in sourcemap result #352
base: main
Are you sure you want to change the base?
Conversation
@bvanjoi if I'm understanding correctly, this specifically addresses the issue of |
Yeah, It is. Maybe I need to update snapshot. |
24b544a
to
9b25d8e
Compare
@bcoe I checked out @bvanjoi branch and I verified that my istanbuljs/v8-to-istanbul#179 fixes that failing test. |
@bvanjoi could I bother you to update to the latest version of |
I had upgrade |
44a73a0
to
c56ea47
Compare
@bvanjoi give things a shot with the latest fixes to |
c56ea47
to
4d03a0f
Compare
It still had some problems in |
Checklist
npm test
, tests passingnpm run test:snap
(to update the snapshot)Background
Sometimes we need to do coverage on the bundled code file, which contains a lot of useless code, for example
node_modules
.Feature
This PR ensure useless files are remove by
this.exclude
.