-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Add type-only import test case for dependencyExtractor #15307
base: main
Are you sure you want to change the base?
Conversation
|
✅ Deploy Preview for jestjs ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
import {type foo, typeof bar} from 'inv3'; | ||
import { | ||
type foo, | ||
typeof bar, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note that this import ends with a ,
which is an interesting wrinkle to account for
- if all named exports are split by a comma, you can have a trailing item that is just space character(s)
This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 30 days. |
Thanks for the PR! Happy to take an |
See #15308
This PR only adds a test case for an open bug report issue, so it can be referenced as a reproduction step.
Summary
I know the problem, but I don't know regex well enough to solve this problem. I could handle this with an if-statement in addDependency to exclude these deps, but I think regex is the proper solution given the rest of the code.
Test plan
Run this test to reproduce the bug.