-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
Doesn't identify styled components in pre-transpiled code #379
Comments
This is what causes #365 |
We have run into this issue using module federation and our in-house component library. babel-plugin-styled-components successfully namespaces styled components written within each app, preventing class name collision when multiple apps are loaded on the same page with module federation. However, each app also imports from our component library which is already transpiled, and these component class names are not namespaced, leading to class name collision bugs. Commenting to add our support for @rbong's PR to add this support after testing it in our dev environment. |
Imports which use
_interopRequireDefault
are not identified.Calls using
SequenceExpression
s are also not identified.The text was updated successfully, but these errors were encountered: